Created
December 6, 2022 21:43
-
-
Save ilovetogetspamed/03e4c64c30575850945deaa77de7d344 to your computer and use it in GitHub Desktop.
Minimum code for React App.js to start without errors.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// found at https://www.digitalocean.com/community/tutorials/how-to-manage-state-on-react-class-components | |
import './App.css'; | |
function App() { | |
return ( | |
<></> | |
); | |
} | |
export default App; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment