mirror of
https://github.com/owncast/owncast.git
synced 2024-10-10 19:16:02 +00:00
10 lines
225 B
TypeScript
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;
|
|
};
|