7 lines
164 B
JavaScript
7 lines
164 B
JavaScript
import AppShell from '../components/AppShell';
|
|
import Home from '../components/pages/Home';
|
|
|
|
export default function Index() {
|
|
return <AppShell page={Home} />;
|
|
}
|