是否可以将CSS类直接分配给React组件? 原因是我有所有的CSS负责产品在SCSS文件负责产品,但边际我想有在商店组件和分配它直接到产品和所有其他组件那里。 我正在使用create-react-app配置。 代码:
import React from 'react';
import Products from "./Products";
function Store() {
return (
<div>
<Products className="store__products"/>
</div>
)
}
export default Store;
您可以将className作为Products组件的一个道具
function Products({className}){
return(
<Wrapper className={className}>
...
</Wrapper>
)
}