daphnis/app/(authenticated)/chunithm/page.tsx
2024-07-01 14:48:26 -04:00

12 lines
215 B
TypeScript

import ChunithmScorePlaylog from "@/components/scoreplaylog/page";
const ChunithmPage = () => {
return (
<div className="p-10">
<ChunithmScorePlaylog />
</div>
);
};
export default ChunithmPage;