28 lines
471 B
Text
28 lines
471 B
Text
|
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'),
|
||
|
)
|
||
|
|
||
|
ReactDOM.render(
|
||
|
<p
|
||
|
// This is a inline comment.
|
||
|
/*
|
||
|
This is a
|
||
|
Multi line comment
|
||
|
*/
|
||
|
<!-- Another multiline
|
||
|
comment !-->
|
||
|
data-test-id="outro" disabled>
|
||
|
Some text here.
|
||
|
</p>,
|
||
|
document.getElementById('root'),
|
||
|
)
|