mirror of
https://github.com/Xevion/xevion.dev.git
synced 2026-01-31 10:26:52 -06:00
11 lines
280 B
TypeScript
11 lines
280 B
TypeScript
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; |