pub fn Body(props: BodyProps) -> Option<VNode>
Expand description
Body component.
Usually just used one time and as a root component for all the app.
See BodyProps.
Inherits the BodyTheme theme.
fn app() -> Element {
    rsx!(
        Body {
            label {
                "Click this"
            }
        }
    )
}