-
I previously had used It would be nice if we could compose the I know the docs have an example of wrapping All of that could be achieved by wrapping the Col, but as it stands now the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hmm, I think that adding |
Beta Was this translation helpful? Give feedback.
Hmm, I think that adding
component
prop to Col is not a good idea as this component will have to support style and className props and this will resolve in inconsistent behavior with custom components. I thinkstyle={{ height: '100%' }}
is the best possible solution which is easy to understand and implement as in your case columns almost always will be used in a loop and you'll have to set it only once.