Files
daphnis/app/(authenticated)/chunithm/patcher/page.tsx
2024-09-05 22:26:57 -04:00

13 lines
192 B
TypeScript

import Patcher from "@/components/patcher/page";
import React from "react";
const PatcherPage = () => {
return (
<div>
<Patcher />
</div>
);
};
export default PatcherPage;