mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 02:11:49 +08:00
10 lines
227 B
JavaScript
10 lines
227 B
JavaScript
import React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
import './index.css';
|
|
import global from 'global';
|
|
import App from './App';
|
|
|
|
const { document } = global;
|
|
|
|
ReactDOM.render(<App />, document.getElementById('root'));
|