daphnis/app/(authenticated)/chunithm/page.tsx
2024-06-29 15:26:59 -04:00

13 lines
213 B
TypeScript

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