Skip to content

Instantly share code, notes, and snippets.

@r3dm1ke
Last active February 27, 2020 18:32
Show Gist options
  • Save r3dm1ke/fcd15cd08fd6d52689f2cd42bd2bd81f to your computer and use it in GitHub Desktop.
Save r3dm1ke/fcd15cd08fd6d52689f2cd42bd2bd81f to your computer and use it in GitHub Desktop.
import React, {useEffect} from 'react';
function App() {
useEffect(() => {
console.log('this will output when app loads');
}, []);
return (
<button onClick={console.log('this will output when button is clicked')}>
Click me
</button>
);
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment