Commit 3809cf12 authored by Dan Abramov's avatar Dan Abramov Committed by GitHub
Browse files

Tweak conventions

parent 4cf29b1a
No related merge requests found
Showing with 5 additions and 3 deletions
+5 -3
import React from 'react'; import React from 'react';
import { render } from 'react-dom'; import ReactDOM from 'react-dom';
import App from './App'; import App from './App';
import './index.css'; import './index.css';
const rootEl = document.getElementById('root'); ReactDOM.render(
render(<App />, rootEl); <App />,
document.getElementById('root')
);
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment