daphnis/app/(authenticated)/chunithm/page.tsx

12 lines
215 B
TypeScript
Raw Normal View History

2024-06-29 19:25:43 +00:00
import ChunithmScorePlaylog from "@/components/scoreplaylog/page";
2024-06-29 05:22:22 +00:00
2024-06-29 19:25:43 +00:00
const ChunithmPage = () => {
2024-06-29 05:22:22 +00:00
return (
2024-07-01 18:48:26 +00:00
<div className="p-10">
<ChunithmScorePlaylog />
2024-06-29 19:26:59 +00:00
</div>
2024-06-29 05:22:22 +00:00
);
};
export default ChunithmPage;