10 lines
224 B
JavaScript
10 lines
224 B
JavaScript
import AddDoctorPage from "@/components/panel/addDoctor";
|
|
import Information from '@/data/information.json';
|
|
|
|
function AddDoctor() {
|
|
return (
|
|
<AddDoctorPage data={Information} />
|
|
)
|
|
}
|
|
|
|
export default AddDoctor |