12 lines
272 B
JavaScript
12 lines
272 B
JavaScript
import Layout from '@/components/layout';
|
|
import SpecialtiesPage from '@/components/specialties';
|
|
|
|
function Doctors() {
|
|
return (
|
|
<Layout title='تخصص ها' name='specialties'>
|
|
<SpecialtiesPage />
|
|
</Layout>
|
|
)
|
|
}
|
|
|
|
export default Doctors |