I'm trying to convert my class component to a function component. I believe instead of ComponentDidMount
we need to use useEffect
:
useEffect(() => {
const {
data: ServerResponse
} = await axios.get('http://127.0.0.1:8000/api/tweets/')
console.log(ServerResponse)
setPosts(ServerResponse)
}, [])
But I get the following error:
Unexpected reserved word 'await'