Skip to content

Instantly share code, notes, and snippets.

@myogeshchavan97
Last active April 9, 2021 08:57
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 myogeshchavan97/fd0fcd23d4407c539e96dbf8d3e34c10 to your computer and use it in GitHub Desktop.
Save myogeshchavan97/fd0fcd23d4407c539e96dbf8d3e34c10 to your computer and use it in GitHub Desktop.
import React from 'react';
import ReactDOM from 'react-dom';
class App extends React.Component {
render() {
return (
<h1>Welcome to REACT!</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