0
点赞
收藏
分享

微信扫一扫

react 使用styled-componts

迎月兮 2024-06-30 阅读 3

一、安装

npm i styled-components

二、直接使用

import React from 'react'
import styled from 'styled-components'
const Node = styled.div`
    color:red;
`

export default function(){
    return (
        <Node>
            this is test content
        </Node>
    );
};

三、官网

https://styled-components.com/docs/basics#getting-started

举报

相关推荐

0 条评论