dioxus/packages/autofmt/tests/samples/letsome.rsx
Jonathan Kelley be99e29e5f
Fixes to autofmt, make it more aggressive (#2230)
* fix: fmt unterminated if, be more aggressive with line splits

* Fix: Handle long exprs in for/if statements
2024-04-03 15:27:36 -07:00

12 lines
206 B
R

#[component]
fn SidebarSection() -> Element {
rsx! {
if let Some(url) = &link.location {
"hi {url}"
}
if val.is_empty() {
"No content"
}
}
}