aboutsummaryrefslogtreecommitdiff
path: root/packages/astro/test/fixtures/react-and-solid/src/components/ExampleReact.tsx
blob: f4b8cfd55cbd32c8a2340cc95c4d92775f26de86 (plain) (blame)
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>;
};