mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 12:49:37 +03:00
b8016eaa90
* fix scrolling issues on mobile * resolve conflict
9 lines
225 B
TypeScript
9 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;
|
|
};
|