Files
nobat724_front/app/clinics/page.js
T

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;