Skip to content

Instantly share code, notes, and snippets.

@bbachi
Created April 16, 2021 23:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bbachi/e99051dc27490dbaef55dbc18f029664 to your computer and use it in GitHub Desktop.
Save bbachi/e99051dc27490dbaef55dbc18f029664 to your computer and use it in GitHub Desktop.
REACT
import './App.css';
import DrawingArea from './DrawingArea';
function App() {
return (
<>
<h1> Drawing Area</h1>
<div className="App drawing-area">
<DrawingArea />
</div>
</>
);
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment