Ant*_*nio 1 reactjs styled-components
我正在尝试将这两个样式化组件合并为一个。
const CustomInput = styled.input`
width: 150px;
height: 100%;
`;
const CustomTextarea = styled.textarea`
width: 150px;
height: 100%;
`;
Run Code Online (Sandbox Code Playgroud)
使用字符串插值:
const sharedCSS = css`
width: 150px;
height: 100%;
`
const CustomInput = styled.Input`
${sharedCSS}
`
const CustomTextarea = styled.textarea`
${sharedCSS}
`
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
54 次 |
| 最近记录: |