mirror of
https://github.com/Xevion/xevion.dev.git
synced 2025-12-13 22:13:39 -06:00
14 lines
291 B
TypeScript
14 lines
291 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;
|