feat: add Classes list page with CRUD modal

This commit is contained in:
2026-07-05 19:10:48 +08:00
parent ec26cb5f5e
commit 0053fed505
4 changed files with 295 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import React from 'react';
import { Card } from 'antd';
// Placeholder — Task 1.5 will implement the full detail page.
const ClassDetailPage: React.FC = () => {
return <Card> </Card>;
};
export default ClassDetailPage;