当前位置: 首页 > 工具软件 > React Style > 使用案例 >

react styled中使用变量

刘瑞
2023-12-01

父级

import { Wrap } from './style';

export default function Parent (){
    return {
        <Wrap isAmazing={ true } />
    }
}

子级

import styled from "styled-components";

export const Wrap = styled.div`{
    height: 100%;
    ${props => props.isAmazing && `border-top: 1px solid #0047bb;`};
}`

 类似资料: