๋ฐ์ํ
Scss, Sass๋ฅผ ์ฌ์ฉํ ๋ ์๋์ ๊ฐ์ด ์ฌ์ฉํ์ ๊ฒ์ด๋ค!
.mainText {
display: flex;
margin: 0px;
padding: 0px;
}
import React from 'react';
import './App.scss';
class App extends React.Component {
render() {
return (
<div className="mainText">
hello world
</div>
);
}
}
export default App;
ํ์ง๋ง styled-component๋ ๋ค์๊ณผ ๊ฐ์ด ์ฌ์ฉํ๋ค.
import React from 'react';
import styled from 'styled-components';
const MainText = styled.div`
display: flex;
margin: 0px;
padding: 0px;
`;
function App() {
return (
<MainText>
hello world
</MainText>
);
}
export default App;
์์ง ์ต์ํ์ง์์ ๋ถ๋ค์ ์ผ๋จ ์ต์ํ ๊ฑธ๋ก ๊ตฌํํ ํ ํ๋์ฉ styled-component๋ก ๋ฐ๊ฟ๋ด๋ ๊ด์ฐฎ๋ค. (๋ณธ์ธ์ด ๊ทธ๋ฌ์)
๊ฒ๋จน์ง ๋ง๊ณ ์ฒ์ฒํ ํ๋์ฉ ๋ฐ๊ฟ๋ณด๋ฉด ๊ธ๋ฐฉ ํ ์ ์์ด์!!
๋ฐ์ํ
๋๊ธ