Skip to content

Instantly share code, notes, and snippets.

@marshallmurphy
Created June 9, 2020 19:59
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 marshallmurphy/7a2a7446672b98faf3581da0f22cf05f to your computer and use it in GitHub Desktop.
Save marshallmurphy/7a2a7446672b98faf3581da0f22cf05f to your computer and use it in GitHub Desktop.
// index.js
import React from 'react'
import { render } from 'react-dom'
import App from './App'
import './index.css'
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