123456789101112131415161718192021222324252627282930313233343536 |
- /// dont format this component
- #[rustfmt::skip]
- #[component]
- fn SidebarSection() -> Element {
- rsx! {
- div {
- "hi" div {} div {}
- }
- }
- }
- /// dont format this component
- #[component]
- fn SidebarSection() -> Element {
- // format this
- rsx! {
- div { "hi" }
- }
- // and this
- rsx! {
- div {
- "hi"
- div {}
- div {}
- }
- }
- // but not this
- #[rustfmt::skip]
- rsx! {
- div {
- "hi" div {} div {}
- }
- }
- }
|