Last active
June 26, 2021 15:53
-
-
Save EnricoPicci/51d27f36120c26ec124768ff4eb9e29d to your computer and use it in GitHub Desktop.
State definition for AnotherComponent
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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