mirror of
				https://github.com/owncast/owncast.git
				synced 2025-10-31 10:08:10 +08: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;
 | |
| };
 | 
