1 2 3 4 5 6
/** @jsxImportSource react */ import { FC } from 'react'; export const ExampleReact: FC = () => { return <div id="example-react">example react component</div>; };