12 lines
242 B
JavaScript
12 lines
242 B
JavaScript
import Content from "./Content";
|
|
|
|
function Header({ matchedCity, name }) {
|
|
return (
|
|
<div className="bg-[#FFF] rounded-lg w-full mx-auto">
|
|
<Content matchedCity={matchedCity} name={name} />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default Header;
|