Initial api requests + stores + basic layout

This commit is contained in:
Gabe Kangas
2022-04-25 23:10:07 -07:00
parent 21af5ce020
commit e2e21d915b
10 changed files with 315 additions and 4 deletions

View File

@@ -1,8 +1,10 @@
import { RecoilRoot } from 'recoil';
import Main from '../components/layouts/main';
export default function Home() {
return (
<div>
This is where v2 of the Owncast web UI will be built. Begin with the layout component
https://ant.design/components/layout/ and edit pages/index.tsx.
</div>
<RecoilRoot>
<Main />
</RecoilRoot>
);
}