added more code formatting for better reading

This commit is contained in:
2025-07-30 12:12:25 +02:00
parent e505d9b0e8
commit 08b6807b96

View File

@@ -7,6 +7,7 @@ import { toast } from "react-toastify";
const WeatherCard: React.FC = () => {
const [city, setCity] = useState("");
const [loading, setLoading] = useState(false);
console.log(loading);
const getAPIKey = () => Cookies.get("apiKey") || "";
const handleCityChange = (event: React.ChangeEvent<HTMLInputElement>) => {