I am struggling to find documentation on (or results via experimenting with code) what the purpose is of having booleans as values for breakpoint props for the grid component in material-ui. Consulting the grid api documentation reveals that booleans are valid values for the breakpoint props lg, md, sm, xl, xs.
I understand that if I say sm={3}
I will get a component that changes to take up 3 grid column units once the display width increases beyond the xs breakpoint (600px) but have no idea about passing a boolean as a value:
For example what would be the reason for providing xs={true}
or md={false}
be?
And how might I have learned the reason on my own? (is there some fundamental knowledge I'm lacking?)