Skip to content

Instantly share code, notes, and snippets.

@DJanoskova
Created March 21, 2020 12:14
Show Gist options
  • Select an option

  • Save DJanoskova/610594f00beba34680984cf4b2faf8da to your computer and use it in GitHub Desktop.

Select an option

Save DJanoskova/610594f00beba34680984cf4b2faf8da to your computer and use it in GitHub Desktop.
export const UserContainer = () => {
const [user, setUser] = useState(null);
// do some apiCall here
return (
<div>
{user ? <UserCard user={user} /> : 'No data available'}
</div>
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment