๐Ÿ“Œ GIT LAB

Branch ๋„ค์ด๋ฐ

Commit ์ปจ๋ฒค์…˜


๐Ÿ™๐Ÿป Styled-Component

$ npm i styled-components

const ํƒœ๊ทธ ์ด๋ฆ„ = styled.HTMLํƒœ๊ทธ๋ช…`
	// css ๋ฌธ๋ฒ•์˜ ์Šคํƒ€์ผ ์ •์˜
	// ๋ฐฑํ‹ฑ์œผ๋กœ ๋ฌถ๊ธฐ
`
import React from "react";
import styled from "styled-components";

const Container = styled.div`
    width:300px;
    height:500px;
`

const Name= styled.p`
    font-size: 20px;
`

const Text= styled.p`
    font-size: 15px;
`

funtion Message() {
  return(
    <Container>
			<Name>song ji yoon</Name>
      <Text>Lorem Ipsum</Text>
    </Container>
  )
}

Untitled