ziko-wrapper
Version:
integrate zikojs elements within other ui framework like vue react solidjs svelte astro ...
21 lines (17 loc) • 398 B
JSX
import {h1, p} from "ziko"
import { ZikoWrapper } from "ziko-wrapper/react"
const Heading = ({msg}) => h1(msg)
const Ex = ({color}, ...children) => {
return p(children[0]).style({color})
}
const App = () =>{
return(
<ZikoWrapper>
<Ex color="red">
<Heading msg="hello world"/>
<Heading msg="hello world"/>
</Ex>
</ZikoWrapper>
)
}
export default App