I used the following line to style a material UI grid in my react project.
gridTemplateColumns: Repeat("auto-fit", minmax("300px", "1fr"))
I get this error "ReferenceError: minmax is not defined".
It looks React knows the repeat CSS function but not the minmax function. I could not figure out why. Any help would be appreciated.