diff options
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> + </> + } } |