import { DefaultLandingComponent } from "./landing/index.jsx";

function App() {
	return (
		<div className='rootDiv'>
			{/* This is a default placeholder component, 
					remove this and add your own component */}
			<DefaultLandingComponent />
		</div>
	);
}

export default App;
