| 1 | /**
|
| 2 | * react-router v8.0.0
|
| 3 | *
|
| 4 | * Copyright (c) Remix Software Inc.
|
| 5 | *
|
| 6 | * This source code is licensed under the MIT license found in the
|
| 7 | * LICENSE.md file in the root directory of this source tree.
|
| 8 | *
|
| 9 | * @license MIT
|
| 10 | */
|
| 11 | import { BoundaryShell } from "./errorBoundaries.js";
|
| 12 | import { useFrameworkContext } from "./components.js";
|
| 13 | import * as React$1 from "react";
|
| 14 | //#region lib/dom/ssr/fallback.tsx
|
| 15 | function RemixRootDefaultHydrateFallback() {
|
| 16 | let { nonce } = useFrameworkContext();
|
| 17 | return /* @__PURE__ */ React$1.createElement(BoundaryShell, {
|
| 18 | title: "Loading...",
|
| 19 | renderScripts: true
|
| 20 | }, null);
|
| 21 | }
|
| 22 | //#endregion
|
| 23 | export { RemixRootDefaultHydrateFallback };
|