trendmicro-frontend / tonic-ui

Tonic UI is a UI component library for React, built with Emotion and Styled System. It is designed to be easy to use and easy to customize.
https://trendmicro-frontend.github.io/tonic-ui
MIT License
125 stars 29 forks source link

Ensure `ToastManager` is layered above `PortalManager` to enable adding toast messages within a portal #932

Closed cheton closed 1 month ago

cheton commented 2 months ago

The expected layout is as follows:

<TonicProvider>
  <ToastManager>
    <PortalManager>
      <App />
    </PortalManager>
  </ToastManager>
</TonicProvider>