Integrating React Router with Unstated

214 Views Asked by At

The following code, where each component includes <Subscribe to={[ZebraContainer]}> causes ZebraContainer to be constructed three times. Is there an accepted pattern to maintain ZebraContainer as a global singleton and only construct once?

  <Provider>
    <BrowserRouter>
      <div className="App">

        ...

        <Route path="/foo" component={Foo} />
        <Route path="/bar" component={Bar} />
        <Route path="/baz" component={Baz} />

      </div>
    </BrowserRouter>
  </Provider>
1

There are 1 best solutions below

0
On

In unstated containers ARE singletons. They aren't reconstructed when the components rerender.