dioxus-autofmt 0.7.7

Autofomatter for Dioxus RSX
Documentation
rsx! {
    Component {
        label: {
            let url = "https://example.com";

            // comment before formatted tail expr
            format!("{url}/docs")
        },
    }

    Component {
        status: {
            // comment before branch
            if is_ready() {
                "ready"
            } else {
                "waiting"
            }
        },
    }

    div {
        data_mode: {
            // comment before block expr
            if is_ready() {
                "ready"
            } else {
                "waiting"
            }
        },
    }
}