diff options
author | Kjetil Orbekk <kj@orbekk.com> | 2022-09-10 14:49:38 -0400 |
---|---|---|
committer | Kjetil Orbekk <kj@orbekk.com> | 2022-09-10 14:49:38 -0400 |
commit | 55a24a3b7d1b3fcc07f0bb8e53b00abf23e651b3 (patch) | |
tree | e85911ccc1eca8c820d7b4f40c9e3b36aa121034 /webapp/src/components/bidding.rs | |
parent | 5ad23c12d718e5b4b6f9076ef2d29de5addd40fc (diff) |
Add nav bar with context
Diffstat (limited to 'webapp/src/components/bidding.rs')
-rw-r--r-- | webapp/src/components/bidding.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webapp/src/components/bidding.rs b/webapp/src/components/bidding.rs index 26a4426..d142dec 100644 --- a/webapp/src/components/bidding.rs +++ b/webapp/src/components/bidding.rs @@ -46,13 +46,13 @@ pub fn bidding(props: &BiddingProperties) -> Html { html! { <> - <p>{ "Bidding table" }</p> - <BiddingTable bidding={ (*bidding).clone() } /> <p>{ "Bidding box" }</p> <BiddingBox current_bid={ bidding.highest_bid().clone() } { on_bid } /> + <p>{ "Bidding table" }</p> + <BiddingTable bidding={ (*bidding).clone() } /> </> } } |