Added weather data component to display weather data - also added function to display data

This commit is contained in:
2025-07-31 15:58:38 +02:00
parent 08b6807b96
commit 480b5188ba
3 changed files with 45 additions and 11 deletions

View File

@@ -0,0 +1,11 @@
import React from "react";
const WeatherData: React.FC = () => {
return (
<>
<p>Weather</p>
</>
);
};
export default WeatherData;