你如何摆脱这个 className react-select 警告?

How do you get rid of this className react-select warning?

Warning: the behaviour of 'className' has changed between 2.0.0-beta.2 and 2.0.0-beta.3. You can now use className to specify the class name of the outer container, and classNamePrefix to enable our provided BEM class names for internal elements. The className prop will have no effect on internal elements when 2.0.0 is released.

我通过添加 classNamePrefix 属性摆脱了警告。 <Select classNamePrefix="foo" {...restOfTheProps} />