change format all file

This commit is contained in:
Ehsan
2025-05-18 01:18:35 +03:30
parent 4a57468e26
commit 254d5d4ebd
84 changed files with 721 additions and 651 deletions
+1 -5
View File
@@ -1,13 +1,9 @@
import Content from "./Content";
function Header({ matchedCity, name }) {
return (
<div className="bg-[#FFF] rounded-lg w-full mx-auto">
<Content
matchedCity={matchedCity}
name={name}
/>
<Content matchedCity={matchedCity} name={name} />
</div>
);
}