atommike
atommike

Reputation: 157

material-ui upgrade from 14.4 to 16.2 - hoc/selectable-enhance?

I'm upgrading a codebase from material-ui 0.14.4 to 0.16.2.

I've been able to all components (so far) except:

material-ui/lib/hoc/selectable-enhance

The codebase uses it as follows:

var SelectContainer = require("material-ui/lib/hoc/selectable-enhance").SelectableContainerEnhance;

What is the equivalent in material-ui 0.16.2?

I know it is /List but can't figure out the exact equivalent.

Upvotes: 0

Views: 91

Answers (1)

Jeff McCloud
Jeff McCloud

Reputation: 5927

I believe what you are looking for is now at material-ui/List/makeSelectable

Upvotes: 1

Related Questions