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