-
Notifications
You must be signed in to change notification settings - Fork 12
Open
Description
Hey, i was wondering why isn't xs={12} set as default prop in Col.
Makes more sense to define the first breakpoint that its value is different than "12".
For example instead of this
<Col xs={12} md={6}>
i could just write
<Col md={6}>
Because with no default breakpoint value i have to write xs={12} to all my components.
Reactions are currently unavailable