maciejhirsz / kobold

Easy declarative web interfaces.
https://docs.rs/kobold/
Mozilla Public License 2.0
385 stars 7 forks source link

`<!snake_case>` components #91

Closed maciejhirsz closed 3 months ago

maciejhirsz commented 3 months ago

Old:

#[component]
fn Foo() -> impl View { ... }

view! {
    <Foo />
}

New:

#[component]
fn foo() -> impl View { ... }

view! {
    <!foo>
}