Mirror: The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.
at main 162 B view raw
1import React from 'react'; 2import { createRoot } from 'react-dom/client'; 3 4import App from './App'; 5 6createRoot(document.getElementById('root')).render(<App />);