Skip to content

Instantly share code, notes, and snippets.

@BenBrostoff
Last active August 11, 2019 12:10
Show Gist options
  • Save BenBrostoff/34a93255596772fa1942757359ff371d to your computer and use it in GitHub Desktop.
Save BenBrostoff/34a93255596772fa1942757359ff371d to your computer and use it in GitHub Desktop.
Simply sync act
export const App = () => {
const [data, setData] = useState('unloaded value');
useEffect(() => {
setData('sync val');
}, []);
return (
<div>
<h2>{data}</h2>
</div>
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment