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

13 lines
213 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-06-29 19:26:59 +00:00
<div className="p-10">
2024-06-29 19:25:43 +00:00
<ChunithmScorePlaylog/>
2024-06-29 19:26:59 +00:00
</div>
2024-06-29 05:22:22 +00:00
);
};
export default ChunithmPage;