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

13 lines
217 B
TypeScript
Raw Normal View History

2024-06-29 18:43:11 +00:00
import ChunithmData from "@/components/scoreplaylog/page";
2024-06-29 05:22:22 +00:00
import React from "react";
const ChunithmPage = async () => {
return (
<div>
<ChunithmData />
</div>
);
};
export default ChunithmPage;