mirror of
https://github.com/gosticks/react-table.git
synced 2026-08-19 08:20:30 +00:00
11 lines
175 B
JavaScript
11 lines
175 B
JavaScript
import React from 'react'
|
|
import ReactDOM from 'react-dom'
|
|
//
|
|
import './index.css'
|
|
import App from './App.js'
|
|
|
|
ReactDOM.render(
|
|
<App />,
|
|
document.getElementById('root')
|
|
)
|