react 中 styled components 简单使用
react 中 styled components 简单使用
1. cnpm i styled-components -S || yarn add styled-components 在 node 环境中安装
- import styled from ‘styled-components’; 加载此组件
- const CardStyle = styled(Card)
& .ant-card-body { max-height: 275px; overflow: auto; }
以上是 react 中 styled components 简单使用 的全部内容, 来源链接: utcz.com/z/384406.html