owncast/web/pages/index.tsx
2022-04-28 12:57:51 -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>
);
}