A
Size: a a a
A
A
M
const [notes, setNotes] = React.useState([]);
useEffect(() => {
// GET request using axios inside useEffect React hook
axios
.get(
`https://elepsio.herokuapp.com/admin/users/${id}?offset=0&count=100&query=34&orderBy=asc`
)
.then(result => setNotes(result.data));
}, []);
A
A
M
A
M
M
M
A
A
A
A
M
M
A
M