使用 styled-components
yarn add styled-componentsimport React from 'react'
import styled from 'styled-components'
const Title = styled.h1`
font-size: 1.5em;
text-align: center;
color: palevioletred;
`
const Wrapper = styled.section`
padding: 4em;
background: papayawhip;
`
export const App = () => (
<Wrapper>
<Title>Hello World!</Title>
</Wrapper>
)Last updated
Was this helpful?