Add shell page for paths project

This commit is contained in:
Xevion
2022-12-30 18:29:18 -06:00
parent 1e2999bd79
commit 55fc7168b1

11
src/pages/paths.tsx Normal file
View File

@@ -0,0 +1,11 @@
import {type NextPage} from "next";
import AppWrapper from "../components/AppWrapper";
import WorkInProgress from "../components/WorkInProgress";
const PathsPage: NextPage = () => {
return <AppWrapper>
<WorkInProgress />
</AppWrapper>
}
export default PathsPage;