mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-23 20:53:06 +00:00
52fb080193
Adds the ability to specify an indent string to public autofmt methods - either a sequence of spaces or a tab character. Get the indentation style and size from rustfmt for dx fmt, or from the editor settings for the vscode extension. Closes #1595
3 lines
79 B
R
3 lines
79 B
R
fn app(cx: Scope) -> Element {
|
|
cx.render(rsx! { div { "hello world" } })
|
|
}
|