github.com/raphaelreyna/latte@v0.11.2-0.20220317193248-98e2fcef4eef/docs/src/index.js (about)

     1  import React from 'react';
     2  import ReactDOM from 'react-dom';
     3  
     4  import App from './App';
     5  
     6  const rootEl = document.getElementById("root");
     7  
     8  ReactDOM.render(
     9  	<React.StrictMode>
    10  		<App />
    11  	</React.StrictMode>
    12  	, rootEl
    13  );