TreeRouterPropsinterface

{
	readonly tree: TreeElement;
	readonly fallback?: ReactElement | undefined | null;
}
PropertyType
.treeTreeElement
The tree of elements to match routes for. required readonly
.fallbackReactElement
null
Optional fallback element.
- Explicit null means fallback to nothing (router will not throw NotFoundError). readonly

Props for the TreeRouter component — the tree to route plus an optional fallback and app meta.