Skip to content

Instantly share code, notes, and snippets.

@mateusz-wierzbicki
Created November 11, 2023 09:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mateusz-wierzbicki/e5b70275d11218eaffdad4be1600f264 to your computer and use it in GitHub Desktop.
Save mateusz-wierzbicki/e5b70275d11218eaffdad4be1600f264 to your computer and use it in GitHub Desktop.
import React from 'react';
import ReactDOM from 'react-dom/client';
import ThemedApp from './ThemedApp';
import './index.css';
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(
<React.StrictMode>
<ThemedApp/>
</React.StrictMode>,
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment