Layout scaffolding for Web apps.
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 

19 satır
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. });