-
Notifications
You must be signed in to change notification settings - Fork 2.6k
/
Copy pathindex.tsx
64 lines (57 loc) · 1.28 KB
/
index.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
export type { RemixBrowserProps } from "./browser";
export { RemixBrowser } from "./browser";
export type {
Location,
NavigateFunction,
Params,
Path,
} from "react-router-dom";
export {
Outlet,
useHref,
useLocation,
useNavigate,
useNavigationType,
useOutlet,
useOutletContext,
useParams,
useResolvedPath,
useSearchParams,
} from "react-router-dom";
export type {
FetcherWithComponents,
FormProps,
RouteMatch,
SubmitOptions,
SubmitFunction,
RemixNavLinkProps as NavLinkProps,
RemixLinkProps as LinkProps,
} from "./components";
export {
Meta,
Links,
Scripts,
Link,
NavLink,
Form,
PrefetchPageLinks,
LiveReload,
useFormAction,
useSubmit,
useTransition,
useFetcher,
useFetchers,
useLoaderData,
useActionData,
useBeforeUnload,
useMatches,
} from "./components";
export type { FormMethod, FormEncType } from "./data";
export type { ThrownResponse } from "./errors";
export { useCatch } from "./errorBoundaries";
export type { HtmlLinkDescriptor } from "./links";
export type { ShouldReloadFunction, HtmlMetaDescriptor } from "./routeModules";
export { ScrollRestoration } from "./scroll-restoration";
export type { RemixServerProps } from "./server";
export { RemixServer } from "./server";
export type { Fetcher } from "./transition";