mirror of
				https://github.com/owncast/owncast.git
				synced 2025-11-04 05:17:27 +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;
 | 
						|
};
 |