react-view-router
Version:
react-view-router
40 lines (29 loc) • 857 B
text/typescript
import ReactViewRouter, { version } from './router';
export * from './types';
export {
default as RouterView,
RouterViewComponent,
} from './router-view';
export type {
RouterViewProps,
RouterViewState,
RouterViewDefaultProps
} from './router-view';
export * from './hocs';
export * from './hooks';
export {
KEEP_ALIVE_ANCHOR,
KEEP_ALIVE_REPLACOR,
KEEP_ALIVE_KEEP_COPIES
} from './keep-alive';
export { default as createRouterLink, RouterLink, guardEvent } from './router-link';
export type { RouterLinkProps } from './router-link';
export { default as config, parseQuery, stringifyQuery } from './config';
export { withRouteGuards, REACT_FORWARD_REF_TYPE } from './route-guard';
export { lazyImport } from './route-lazy';
export * from './history';
export * from './util';
export {
version
};
export default ReactViewRouter;