0
owncast/web/pages/index.tsx
André Rusakow b8016eaa90
fix scroll on mobile (#2585)
* fix scrolling issues on mobile

* resolve conflict
2023-01-15 18:37:21 -08:00

10 lines
225 B
TypeScript

import { ReactElement } from 'react';
import { Main } from '../components/layouts/Main/Main';
export default function Home() {
return <Main />;
}
Home.getLayout = function getLayout(page: ReactElement) {
return page;
};