Skip to content

Instantly share code, notes, and snippets.

@BretCameron
Created March 7, 2019 12:57
Show Gist options
  • Save BretCameron/6c1525271247ab6e73c06ad27dcf0b80 to your computer and use it in GitHub Desktop.
Save BretCameron/6c1525271247ab6e73c06ad27dcf0b80 to your computer and use it in GitHub Desktop.
import React from 'react';
import './App.css';
const App = () => {
const handleClick = () => {
alert("Click Successful!");
};
return (
<div className="App">
<header className="App-header">
<p style={{ fontSize: '100px', cursor: 'pointer' }}>Click Me!</p>
</header>
</div>
)
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment