UNPKG

ziko-wrapper

Version:

integrate zikojs elements within other ui framework like vue react solidjs svelte astro ...

14 lines (11 loc) 236 B
import {h1} from "ziko" import { ZikoWrapper } from "ziko-wrapper/react" const Heading = ({msg}) => h1(msg) const App = () =>{ return( <ZikoWrapper> <Heading msg="hello world"/> </ZikoWrapper> ) } export default App