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