mirror of
https://github.com/fergalmoran/turnstone.git
synced 2025-12-22 09:49:56 +00:00
12 lines
221 B
JavaScript
12 lines
221 B
JavaScript
import React from 'react'
|
|
import ReactDOM from 'react-dom'
|
|
import './styles/index.css'
|
|
import App from './App'
|
|
|
|
ReactDOM.render(
|
|
<React.StrictMode>
|
|
<App />
|
|
</React.StrictMode>,
|
|
document.getElementById('root')
|
|
)
|