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 }