owncast/web/pages/index.tsx

11 lines
186 B
TypeScript
Raw Normal View History

import { RecoilRoot } from 'recoil';
2022-04-28 21:57:51 +02:00
import Main from '../components/layouts/Main';
2020-11-08 00:32:51 +01:00
export default function Home() {
2020-10-26 02:57:23 +01:00
return (
<RecoilRoot>
<Main />
</RecoilRoot>
2020-10-26 02:57:23 +01:00
);
}