| import React, { useState, useEffect, useCallback } from 'react'; | |
| import Card from './components/Card'; | |
| import Loader from './components/Loader'; | |
| import Button from './components/Button'; | |
| import WeatherIcon from './components/WeatherIcon'; | |
| import { generateWeatherForecast, getOutfitSuggestion, generateOutfitImage } from './services/geminiService'; | |
| import type { Weather, OutfitSuggestion } from './types'; | |
| const App: React.FC = () => { | |
| … )} | |
| </div> | |
| </div> | |
| </main> | |
| </div> | |
| ); | |
| }; | |
| export default App; |