16 lines
391 B
JavaScript
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;
|