19 lines
437 B
React
19 lines
437 B
React
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
|