refactor: refactor structures

This commit is contained in:
2nguyen
2026-08-19 14:26:13 +07:00
parent fd11fa59b1
commit d3cc4c077c
5 changed files with 13 additions and 38 deletions
@@ -46,7 +46,7 @@ const stats = [
}
];
function DashboardPage() {
function CoursePage() {
return (
<>
<div className="mb-3 flex flex-row items-center justify-between">
@@ -150,4 +150,4 @@ function DashboardPage() {
);
}
export default DashboardPage;
export default CoursePage;
-18
View File
@@ -1,18 +0,0 @@
import PageHeader from '../components/PageHeader.jsx'
function CoursesPage() {
return (
<>
<PageHeader
title="Khoa hoc"
description="Quan ly danh sach khoa hoc, noi dung bai hoc va trang thai xuat ban."
/>
<section className="content-panel">
<h2>Danh sach khoa hoc</h2>
<p>Khoi tao noi dung quan ly khoa hoc tai day.</p>
</section>
</>
)
}
export default CoursesPage