back/feat1-join
, back/feat44-makepost
, front/feat55-gogo
, front/style667-hello
$ 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>
)
}