added Layout and weather card

This commit is contained in:
2025-07-27 11:06:03 +02:00
parent 7efabca15d
commit 30bdcb6e4e
6 changed files with 89 additions and 1 deletions
+8 -1
View File
@@ -1,7 +1,14 @@
import "./App.css";
import Layout from "./Layout/Layout.tsx";
import WeatherCard from "./components/WeatherCard";
function App() {
return <></>;
return (
<Layout>
<WeatherCard />
</Layout>
);
}
export default App;