Skip to main content

Browser Router

In order to serve multiple reports in one React project, you can use this component to separate them by routes. this is only useful for Server side generator. The BrowserRouter must be used as the parent of Route components.

Only one instance of it must be used, and the suggested place for it is before the Section component. please check the sample usage at the end of Route component documentation.

<BrowserRouter>
<Route ... />
<Route ... />
<Route ... />
</BrowserRouter>