index-react-server-client.mjs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /**
  2. * react-router v7.10.1
  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. "use client";
  12. import {
  13. AwaitContextProvider,
  14. BrowserRouter,
  15. Form,
  16. HashRouter,
  17. HistoryRouter,
  18. Link,
  19. Links,
  20. MemoryRouter,
  21. Meta,
  22. NavLink,
  23. Navigate,
  24. Outlet,
  25. Route,
  26. Router,
  27. RouterProvider,
  28. Routes,
  29. ScrollRestoration,
  30. StaticRouter,
  31. StaticRouterProvider,
  32. WithComponentProps,
  33. WithErrorBoundaryProps,
  34. WithHydrateFallbackProps
  35. } from "./chunk-ANIOYBQK.mjs";
  36. export {
  37. BrowserRouter,
  38. Form,
  39. HashRouter,
  40. Link,
  41. Links,
  42. MemoryRouter,
  43. Meta,
  44. NavLink,
  45. Navigate,
  46. Outlet,
  47. Route,
  48. Router,
  49. RouterProvider,
  50. Routes,
  51. ScrollRestoration,
  52. StaticRouter,
  53. StaticRouterProvider,
  54. AwaitContextProvider as UNSAFE_AwaitContextProvider,
  55. WithComponentProps as UNSAFE_WithComponentProps,
  56. WithErrorBoundaryProps as UNSAFE_WithErrorBoundaryProps,
  57. WithHydrateFallbackProps as UNSAFE_WithHydrateFallbackProps,
  58. HistoryRouter as unstable_HistoryRouter
  59. };