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