Skip to content

Instantly share code, notes, and snippets.

@eamonnboyle
Last active February 22, 2021 15:05
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 eamonnboyle/355ba6cbeedf46244fd5508380660d02 to your computer and use it in GitHub Desktop.
Save eamonnboyle/355ba6cbeedf46244fd5508380660d02 to your computer and use it in GitHub Desktop.
Weather App Tutorial - index.tsx
import React from 'react';
import ReactDOM from 'react-dom';
import App from './App';
ReactDOM.render(
<React.StrictMode>
<App />
</React.StrictMode>,
document.getElementById('root')
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment