Skip to content

Instantly share code, notes, and snippets.

@alielmajdaoui
Created October 30, 2022 01:33
Show Gist options
  • Save alielmajdaoui/797fb28908af5d1af29a39ab56a7ef01 to your computer and use it in GitHub Desktop.
Save alielmajdaoui/797fb28908af5d1af29a39ab56a7ef01 to your computer and use it in GitHub Desktop.
./src/settings-renderer/index.tsx
import { createRoot } from 'react-dom/client';
const App = () => <div>Settings window!</div>;
const container = document.getElementById('root')!;
const root = createRoot(container);
root.render(<App />);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment