mirror of
https://github.com/docker/awesome-compose.git
synced 2025-04-26 10:43:35 +02:00
refacto(react-rust-postgres): replace rocket by actix-web (#153)
Signed-off-by: Jérémie Drouet <jeremie.drouet@gmail.com>
This commit is contained in:
parent
0ae9d4cea7
commit
a13fabe604
14 changed files with 114 additions and 172 deletions
6
react-rust-postgres/frontend/src/App.js
vendored
6
react-rust-postgres/frontend/src/App.js
vendored
|
@ -5,9 +5,9 @@ import "./App.css";
|
|||
function App() {
|
||||
const [message, setMessage] = useState();
|
||||
useEffect(() => {
|
||||
fetch("/api/")
|
||||
.then(res => res.json())
|
||||
.then(res => setMessage(res.message))
|
||||
fetch("/api/users")
|
||||
.then((res) => res.json())
|
||||
.then((res) => setMessage(res.message))
|
||||
.catch(console.error);
|
||||
}, [setMessage]);
|
||||
return (
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue