react-html 1.0.0-alpha.8

react html components for frender
1
2
3
4
5
6
7
8
9
10
11
12
13
use crate::{HtmlCommonSharedPropsBuilder, HtmlMediaSharedPropsBuilder};

crate::macros::def_intrinsic_component! {
    "audio"
    AudioComponent(AudioComponentProps) {
        AudioComponentProps
        : AudioComponentPropsBuilder
        : HtmlMediaSharedPropsBuilder[web_sys::HtmlAudioElement]
        : HtmlCommonSharedPropsBuilder[web_sys::HtmlAudioElement]
        {
        }
    }
}