const Title = styled.h1`font-size: 1.5em;text-align: center;color: palevioletred;`;
简版 style-components 的实现
// When I call this function…function h1(styles) {// …it generates a brand-new React component…return function NewComponent(props) {// …which will render the associated HTML element:return <h1 {...props} />}}