import { JSX } from 'preact' export interface Props extends JSX.HTMLAttributes { text: string } export function SectionHead( { text, children, className, ...props }: Props, ) { return (

{text} {children}

) }