mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
* Ignore orphaned fibers in the debugger * Remember last entered code via localStorage * Update Create React App * Minor fixes * Dogfood Fiber
10 lines
180 B
JavaScript
10 lines
180 B
JavaScript
import React from 'react';
|
|
import ReactDOM from 'react-dom/fiber';
|
|
import App from './App';
|
|
import './index.css';
|
|
|
|
ReactDOM.render(
|
|
<App />,
|
|
document.getElementById('root')
|
|
);
|