0
owncast/web/pages/index.tsx

11 lines
186 B
TypeScript
Raw Normal View History

import { RecoilRoot } from 'recoil';
2022-04-28 12:57:51 -07:00
import Main from '../components/layouts/Main';
2020-11-07 15:32:51 -08:00
export default function Home() {
2020-10-25 18:57:23 -07:00
return (
<RecoilRoot>
<Main />
</RecoilRoot>
2020-10-25 18:57:23 -07:00
);
}