RouterPropsinterface

{
	readonly routes: Routes;
	readonly fallback?: ReactElement | undefined | null;
}
PropertyType
.routesRoutes
List of routes for the router to match against. required readonly
.fallbackReactElement
null
Optional fallback element.
- Explicit null means fallback to nothing (router will not throw NotFoundError). readonly

Props for <Router> — the routes to match against plus an optional fallback.