Skip to content

Instantly share code, notes, and snippets.

@vsim1964
Created August 12, 2022 11:38
Show Gist options
  • Save vsim1964/0efd6a37c0084f7b2e7d2e1b847685ba to your computer and use it in GitHub Desktop.
Save vsim1964/0efd6a37c0084f7b2e7d2e1b847685ba to your computer and use it in GitHub Desktop.
React__2. Index.js
import React from 'react';
import ReactDOM from 'react-dom/client';
import './index.css';
import App from './components/app/App';
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(
<React.StrictMode>
<App />
</React.StrictMode>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment