owncast/web/pages/index.tsx
2022-04-25 23:10:07 -07:00

10 lines
186 B
TypeScript

import { RecoilRoot } from 'recoil';
import Main from '../components/layouts/main';
export default function Home() {
return (
<RecoilRoot>
<Main />
</RecoilRoot>
);
}