Skip to content

Instantly share code, notes, and snippets.

@bbachi
Created April 16, 2021 02:58
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/ed844163317c210f42f5d1fc823725d5 to your computer and use it in GitHub Desktop.
Save bbachi/ed844163317c210f42f5d1fc823725d5 to your computer and use it in GitHub Desktop.
App
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