Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 455 Bytes

05-Style.md

File metadata and controls

33 lines (25 loc) · 455 Bytes

install style-components

yarn add styled-components

add components

change App.jsx

import React from "react";
import styled from "styled-components";

const Wrapper = styled.section`
  padding: 5px;
  background: papayawhip;
`;

const Title = styled.h1`
  font-size: 1.5em;
  color: red;
`;

function App() {
  return (
    <Wrapper>
      <Title>title</Title>
      <div>Hello world</div>
    </Wrapper>
  );
}

export default App;