UNPKG

ziko-wrapper

Version:

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

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