diff options
author | Kjetil Orbekk <kj@orbekk.com> | 2022-10-06 19:47:58 -0400 |
---|---|---|
committer | Kjetil Orbekk <kj@orbekk.com> | 2022-10-06 19:47:58 -0400 |
commit | b10b534ab6507ed2c2d1a62d61f3213397a288e5 (patch) | |
tree | a4b51714e0fe7744ae4d550c1a84e48d81f0fcaa /webapp/src/components/show_bid.rs | |
parent | 806faef4b75173892ecea4ccd4a14178320c89a4 (diff) |
Run `cargo fmt`
Diffstat (limited to 'webapp/src/components/show_bid.rs')
-rw-r--r-- | webapp/src/components/show_bid.rs | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/webapp/src/components/show_bid.rs b/webapp/src/components/show_bid.rs index 2ab2d5c..5914710 100644 --- a/webapp/src/components/show_bid.rs +++ b/webapp/src/components/show_bid.rs @@ -9,14 +9,14 @@ pub struct ShowBidProps { #[function_component(ShowBid)] pub fn show_bid(props: &ShowBidProps) -> Html { -html! { - <> - <p>{ - match props.contract { - None => "Passed".to_string(), - Some(c) => format!("{}", c), - } - }</p> - </> -} + html! { + <> + <p>{ + match props.contract { + None => "Passed".to_string(), + Some(c) => format!("{}", c), + } + }</p> + </> + } } |