import React, {StrictMode} from 'react'; import ReactDOM from 'react-dom'; import App from './components/app/App'; import './index.css'; //const elem = React.createElement('h2', {className: 'App-header'}, 'Hello world'); /* const text = 'Hello world'; const elem = (

This is the text:{text}

) */ ReactDOM.render( , document.getElementById('root') );