-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathApp.jsx
64 lines (56 loc) · 1.98 KB
/
App.jsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
import { useState, useEffect } from "react";
import reactLogo from "./assets/react.svg";
import viteLogo from "/vite.svg";
import "./App.css";
/*
This is the starting point of our application. Here, we can begin coding
and transforming this page into whatever best suits our needs.
For example, we can start by creating a login page, home page, or an about section;
there are many ways to get your application up and running.
With App.jsx, we can also define global variables and routes to store information as well as page navigation.
*/
function App() {
const [count, setCount] = useState(0);
const [randomItem, setRandomItem] = useState(null);
async function getRandomItem() {
/*
Because of the server proxy we set up in our Vite config, there's no
more need to specify localhost for the backend! Just use `/api/path`.
We query the backend and store its response into a state variable,
where we display it in our JSX below.
*/
const res = await fetch(`/api/get-random`);
const data = await res.json();
setRandomItem(data["item_id"]);
}
useEffect(() => {
getRandomItem();
}, []);
return (
<>
<div>
<a href="https://vitejs.dev" target="_blank">
<img src={viteLogo} className="logo" alt="Vite logo" />
</a>
<a href="https://react.dev" target="_blank">
<img src={reactLogo} className="logo react" alt="React logo" />
</a>
</div>
<h1>Vite + React</h1>
<div className="card">
<button onClick={() => setCount((count) => count + 1)}>count is {count}</button>
<p>
Edit <code>src/App.jsx</code> and save to test HMR
</p>
{/* Here's a trick you can use! If you want to render a JSX element only when a
state variable becomes not `null` (i.e. truthy), you can do a short circuit
operation with `&&`. */}
{randomItem && (
<p>The item retrieved from the backend has an ID of {randomItem}</p>
)}
</div>
<p className="read-the-docs">Click on the Vite and React logos to learn more</p>
</>
);
}
export default App;