Skip to content

Instantly share code, notes, and snippets.

@EnricoPicci
Last active June 26, 2021 15:53
Show Gist options
  • Select an option

  • Save EnricoPicci/51d27f36120c26ec124768ff4eb9e29d to your computer and use it in GitHub Desktop.

Select an option

Save EnricoPicci/51d27f36120c26ec124768ff4eb9e29d to your computer and use it in GitHub Desktop.
State definition for AnotherComponent
export const AnotherComponent: FC = () => {
const [data, setData] = useState("No data received yet from remote service");
return (
<div className="AnotherComponent">
<h3>AnotherComponent</h3>
<p>{data}</p>
</div>
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment