-
Alternative title: Why is When talking about collection components, the docs talk about the usefulness of JSX for defining collections.
However, it isn't clear to me how I'm actually meant to use what appears to be the core collection component ( Say if I want to create my own components using collections, is there actually a way to do this with Item? e.g. a component which renders a bottom nav bar with tabs that have an icon and label, and selecting one of the tab items puts the children of that item into a bottom sheet
Is it intentional that passing the generic It appears that adding my own |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You could potentially override the The team has been experimenting with allowing |
Beta Was this translation helpful? Give feedback.
You could potentially override the
Item
's props in a re-export like we do here for Column. Your additional props would then be available in the node'sprops
. This is all a bit messy sinceItem
wasn't really meant to be extended.The team has been experimenting with allowing
Item
wrappers but that work is still in progress