/ examples / simple / src / Label.poly.tsx
Label.poly.tsx
1  import type { JSX } from "@genoly/core/jsx-runtime";
2  
3  export default function Label(props: { children: JSX.Element }) {
4    return <p>{props.children}</p>;
5  }