-
Notifications
You must be signed in to change notification settings - Fork 228
/
App.js
69 lines (63 loc) · 1.7 KB
/
App.js
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
65
66
67
68
69
import React, { useCallback, useEffect, useState } from 'react';
import logo from './logo.svg';
import './App.css';
function App() {
const [message, setMessage] = useState(null);
const [isFetching, setIsFetching] = useState(false);
const [url, setUrl] = useState('/api');
const fetchData = useCallback(() => {
fetch(url)
.then(response => {
if (!response.ok) {
throw new Error(`status ${response.status}`);
}
return response.json();
})
.then(json => {
setMessage(json.message);
setIsFetching(false);
}).catch(e => {
setMessage(`API call failed: ${e}`);
setIsFetching(false);
})
}, [url]);
useEffect(() => {
setIsFetching(true);
fetchData();
}, [fetchData]);
return (
<div className="App">
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
{ process.env.NODE_ENV === 'production' ?
<p>
This is a production build from create-react-app.
</p>
: <p>
Edit <code>src/App.js</code> and save to reload.
</p>
}
<p>{'« '}<strong>
{isFetching
? 'Fetching message from API'
: message}
</strong>{' »'}</p>
<p><a
className="App-link"
href="https://github.com/mars/heroku-cra-node"
>
React + Node deployment on Heroku
</a></p>
<p><a
className="App-link"
href="https://reactjs.org"
target="_blank"
rel="noopener noreferrer"
>
Learn React
</a></p>
</header>
</div>
);
}
export default App;