Is this package currently applicable to RN? I tried to use it in the RN project and pass data to components as props, but it failed.
// react
const Card = reactifyWc("my-card");
<Card data="1234"/>
//web-components
@property()
data:string|number=0;
render(){
return html`
<div>${this.data}<div>
`
}
can not get "1234"
Is this package currently applicable to RN? I tried to use it in the RN project and pass data to components as props, but it failed.
can not get "1234"