Files
nobat724_front/components/layout/header/index.js
T
2025-05-11 12:13:23 +03:30

17 lines
333 B
JavaScript

import Content from "./Content";
// import { getStateInfo } from "@/lib/getStateInfo";
function Header({ name }) {
// const { matchedCity } = getStateInfo();
return (
<div className="bg-[#FFF] rounded-lg w-full mx-auto">
<Content
// matchedCity={matchedCity}
/>
</div>
);
}
export default Header;