import type { JSX } from 'react' import type { TuonoProps } from 'tuono' interface IndexProps { subtitle: string } export default function IndexPage({ data, isLoading, }: TuonoProps): JSX.Element { if (isLoading) { return

Loading...

} return ( <>
Crates Npm

TUONO

{data?.subtitle}

Github
) }