UNPKG

synapse-react-client

Version:

[![npm version](https://badge.fury.io/js/synapse-react-client.svg)](https://badge.fury.io/js/synapse-react-client) [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettie

13 lines 656 B
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