21963eda1b
Also added a weather data card where the design is displayed
15 lines
272 B
TypeScript
15 lines
272 B
TypeScript
import "./App.css";
|
|
import "react-toastify/dist/ReactToastify.css";
|
|
import Layout from "./Layout/Layout.tsx";
|
|
import WeatherCard from "./components/WeatherForm.tsx";
|
|
|
|
function App() {
|
|
return (
|
|
<Layout>
|
|
<WeatherCard />
|
|
</Layout>
|
|
);
|
|
}
|
|
|
|
export default App;
|