synapse-react-client
Version:
[](https://badge.fury.io/js/synapse-react-client) [](https://github.com/prettier/prettie
13 lines • 656 B
TypeScript
import { PropsWithChildren } from 'react';
export type GridPageRouterProps = PropsWithChildren<{
/** Used to determine the base path for the component. Default is Grid:default */
routerBaseName?: string;
/** If true use a MemoryRouter, which prevents the browser URL from updating. For testing purposes only. */
useMemoryRouter?: boolean;
}>;
/**
* A router wrapper for the GridPage, which applies a router around the children to support using react-router APIs
* from within SWC.
*/
export default function GridPageRouter(props: GridPageRouterProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=GridPageRouter.d.ts.map