mirror of
https://github.com/owncast/owncast.git
synced 2025-01-23 00:23:54 +03:00
10 lines
186 B
TypeScript
10 lines
186 B
TypeScript
import { RecoilRoot } from 'recoil';
|
|
import Main from '../components/layouts/Main';
|
|
|
|
export default function Home() {
|
|
return (
|
|
<RecoilRoot>
|
|
<Main />
|
|
</RecoilRoot>
|
|
);
|
|
}
|