diff --git a/api/api.py b/api/api.py index 3e16e58..64d9fe5 100644 --- a/api/api.py +++ b/api/api.py @@ -3,6 +3,6 @@ from flask import Flask app = Flask(__name__) -@app.route('/time') +@app.route('/api/time') def get_current_time(): return {'time': time.time()} diff --git a/package.json b/package.json index ae544fc..2620335 100644 --- a/package.json +++ b/package.json @@ -25,6 +25,5 @@ "eslint-plugin-react-refresh": "^0.4.18", "globals": "^15.14.0", "vite": "^6.1.0" - }, - "proxy": "http://localhost:5000" + } } diff --git a/src/App.jsx b/src/App.jsx index f67355a..2f196f9 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -1,35 +1,22 @@ -import { useState } from 'react' -import reactLogo from './assets/react.svg' -import viteLogo from '/vite.svg' +import { useEffect, useState } from 'react' import './App.css' function App() { - const [count, setCount] = useState(0) + const [currentTime, setCurrentTime] = useState(0); - return ( - <> -
-
- Edit src/App.jsx
and save to test HMR
-
- Click on the Vite and React logos to learn more -
- > - ) + useEffect(() => { + fetch('/api/time').then(res => res.json()).then(data => { + setCurrentTime(data.time); + }); + }, []); + + return ( +The current time is {currentTime}.
+