Skip to content

Instantly share code, notes, and snippets.

@velotiotech
Created April 10, 2024 09:42
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 velotiotech/050d3016d46bba30196e40d6dbd1b3fc to your computer and use it in GitHub Desktop.
Save velotiotech/050d3016d46bba30196e40d6dbd1b3fc to your computer and use it in GitHub Desktop.
// src/index.js
import React from 'react';
import ReactDOM from 'react-dom';
const App = () => {
return <h1>Hello, React with Webpack!</h1>;
};
ReactDOM.render(<App />, document.getElementById('root'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment