training_data/apps/web/src/app/main/courses/page.tsx

9 lines
166 B
TypeScript
Raw Normal View History

2025-02-25 19:50:36 +08:00
import AllCoursesLayout from "./layout/AllCoursesLayout";
2025-02-06 16:32:31 +08:00
export default function CoursesPage() {
2025-02-20 20:02:27 +08:00
return (
<>
2025-02-25 19:50:36 +08:00
<AllCoursesLayout></AllCoursesLayout>
</>
2025-02-20 20:02:27 +08:00
);
}