mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
12 lines
214 B
TypeScript
12 lines
214 B
TypeScript
![]() |
import React from 'react'
|
||
|
import ReactDOM from 'react-dom'
|
||
|
import './index.css'
|
||
|
import App from './App'
|
||
|
|
||
|
ReactDOM.render(
|
||
|
<React.StrictMode>
|
||
|
<App />
|
||
|
</React.StrictMode>,
|
||
|
document.getElementById('root')
|
||
|
)
|