gpt4 book ai didi

css - 如何在不同的 React 组件之间重用 styled-components?

转载 作者:太空宇宙 更新时间:2023-11-04 05:36:53 26 4
gpt4 key购买 nike

我在不同的组件之间使用相似的布局,我希望能够重用创建布局的样式化组件。

   const CoreContainer = styled.div`
display: flex;
xjustify-content: center;
flex-direction: column-reverse;
@media (min-width: 1025px) {
flex-direction: row;
}
height:100%;
`;
const FirstContainer = styled.div`
text-align:center;
background-color:#F8F8FA;
width:100%;
padding-top:4rem;
align-items: center;
justify-content: center;
display: flex;
@media (min-width: 1025px) {
xmin-width:700px;
width:68%;
}

`;
const SecondContainer = styled.div`
display:flex;
width:100%;
@media (min-width: 720px) {
-webkit-box-shadow: -1px 0 10px 0px rgba(0, 0, 0, 0.1);
box-shadow: -1px 0 10px 0px rgba(0, 0, 0, 0.1);
box-sizing: border-box;

display: flex;
justify-content: center;

}
@media (min-width: 1025px) {
width:33%;
}
`;
export class GeneralComponent extends Component{
render(){
if(this.props.value){
return <ComponentA />
}
else{
return <ComponentB />
}
}
}


//In a differnent file


export class ComponentA extends Component{
render(){
return(
<CoreContainer>
<FirstContainer>
{ someContentA}
</FirstContainer>
<SecondContainer>
{otherContentA}
</SecondContainer>
</CoreContainer>);
}
}

//In a differnent file


export class ComponentB extends Component{
render(){
return(
<CoreContainer>
<FirstContainer>
{ someContentB}
</FirstContainer>
<SecondContainer>
{otherContentB}
</SecondContainer>
</CoreContainer>);
}
}

我希望能够在不同的 React 组件中使用 coreContainer、firstContainer 和 SecondContainer,有没有办法在不同的组件之间重用 styled-components css,所以如果我改变布局,它会在两个组件中改变组件,我没有重复的代码?

谢谢。

最佳答案

创建 style.js

export const CoreContainer = styled.div`
display: flex;
justify-content: center;
flex-direction: column-reverse;
@media (min-width: 1025px) {
flex-direction: row;
}
height:100%;
`;

像这样导入两个文件:

import { CoreContainer } from 'path of the style.js';

关于css - 如何在不同的 React 组件之间重用 styled-components?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59561829/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com