Skip to content

Instantly share code, notes, and snippets.

@ilovetogetspamed
Created December 6, 2022 21:43
Show Gist options
  • Save ilovetogetspamed/03e4c64c30575850945deaa77de7d344 to your computer and use it in GitHub Desktop.
Save ilovetogetspamed/03e4c64c30575850945deaa77de7d344 to your computer and use it in GitHub Desktop.
Minimum code for React App.js to start without errors.
// 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