Layout scaffolding for Web apps.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 

19 lignes
574 B

  1. /**
  2. * By default, Remix will handle hydrating your app on the client for you.
  3. * You are free to delete this file if you'd like to, but if you ever want it revealed again, you can run `npx remix reveal` ✨
  4. * For more information, see https://remix.run/docs/en/main/file-conventions/entry.client
  5. */
  6. import { RemixBrowser } from "@remix-run/react";
  7. import { startTransition, StrictMode } from "react";
  8. import { hydrateRoot } from "react-dom/client";
  9. startTransition(() => {
  10. hydrateRoot(
  11. document,
  12. <StrictMode>
  13. <RemixBrowser />
  14. </StrictMode>
  15. );
  16. });