Files
nobat724_front/app/clinics/page.js
T
2025-05-18 01:18:35 +03:30

16 lines
391 B
JavaScript

import ClinicsPage from "@/components/clinics";
import Layout from "@/components/layout/StLayout";
import { getStateInfo } from "@/lib/getStateInfo";
function Clinics() {
const { matchedCity, matchedState } = getStateInfo();
return (
<Layout name="/clinics">
<ClinicsPage matchedCity={matchedCity} matchedState={matchedState} />
</Layout>
);
}
export default Clinics;