summary refs log tree commit diff stats
path: root/src/components/banner.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/banner.rs')
-rw-r--r--src/components/banner.rs6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/components/banner.rs b/src/components/banner.rs
index acaaf62..3244a07 100644
--- a/src/components/banner.rs
+++ b/src/components/banner.rs
@@ -9,9 +9,5 @@ pub fn Banner<T>(mut text: T) -> impl IntoView
 where
     T: FnMut() -> String + Send + 'static,
 {
-    view! {
-        <p class="text-white rounded-lg m-2 p-2 bg-red-600">
-            {move || text()}
-        </p>
-    }
+    view! { <p class="text-white rounded-lg m-2 p-2 bg-red-600">{move || text()}</p> }
 }