react-router
Version:
Declarative routing for React
24 lines (23 loc) • 663 B
JavaScript
/**
* react-router v8.0.0
*
* Copyright (c) Remix Software Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE.md file in the root directory of this source tree.
*
* @license MIT
*/
import { BoundaryShell } from "./errorBoundaries.js";
import { useFrameworkContext } from "./components.js";
import * as React$1 from "react";
//#region lib/dom/ssr/fallback.tsx
function RemixRootDefaultHydrateFallback() {
let { nonce } = useFrameworkContext();
return /* @__PURE__ */ React$1.createElement(BoundaryShell, {
title: "Loading...",
renderScripts: true
}, null);
}
//#endregion
export { RemixRootDefaultHydrateFallback };