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

14 lines
331 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:45:16 +00:00
<div className="h-screen flex items-center justify-center overflow-y-scroll no-scrollbar">
<div className="w-[70vw]">
<ChunithmScorePlaylog />
</div>
2024-06-29 19:26:59 +00:00
</div>
2024-06-29 05:22:22 +00:00
);
};
export default ChunithmPage;