performant-software / react-components

A library of shared React components
https://performant-software.github.io/react-components/
MIT License
1 stars 1 forks source link

Enhancement: Position-agnostic PlacesDetailsPanel component #262

Open ajolipa opened 7 months ago

ajolipa commented 7 months ago

It would be useful to have a version of the PlacesDetailsPanel component that can be place more flexibly within pages, e.g. can be used inside a modal, rather than specifically being a sidebar.

dleadbetter commented 7 months ago

If both components will share similar content (and if possible) it would be nice to have something like:

<Sidebar>
  <PlaceStuff />
</Sidebar>

<Modal>
  <PlaceStuff />
<Modal>