import React from 'react'; export function Twitter() { const [tweets, setTweets] = React.useState(); const [error, setError] = React.useState(); React.useEffect(() => { fetch('/api/twitter') .then((res) => res.json()) .then((res) => { if (res.error) { throw Error(res.error); } setTweets(res.data.statuses); }) .catch((err) => { setError(true); }); }, []); return ( <>