출처 : 패스트캠퍼스 한 번에 끝내는 프론트엔드 개발 초격차 패키지
import styles from './App.module.css';
- App.css
import './App.css';
: import순서(index.css → App.css)에 맞춰 전역적으로 스타일(css 파일) 지정됨- create-react-app에서 설정을 통해 import
- react 자체적으로, 독립적으로 컴포넌트 별로 스타일을 줄 수 있는 방법 제공되지 않음
.클래스이름 .header
- App.scss
- 다른 문법을 사용해서 작성해도 css로 변형되어 사용 가능
- 특정 영역안에 위계별(클래스:App안에 header, logo)로 스타일 작성
- sass 모듈 설치해야함
npm i sass
.App {
text-align: center;
.logo {
height: 40vmin;
pointer-events: none;
}
@keyframes App-logo-spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
}
- module.css
import styles from "./App.module.css";
- 실제 작성한 코드를 변환 후 전역으로 추가
- import한 styles객체가 원래 이름에 변경된 클래스 이름을 매칭하여 부여
- {styles['클래스이름']} 이렇게 작성하면 알아서 매칭해서 고유의 이름 부여
function App() {
return (
<div className={styles["App"]}>
<header className={styles["header"]}>
<img src={logo} className={styles["logo"]} alt="logo" />
<p>
Edit <code>src/App.js</code> and save to reload.
</p>
<a
className={styles["link"]}
href="https://reactjs.org"
target="_blank"
rel="noopener noreferrer"
>
Learn React
</a>
</header>
</div>
);
}
classname을 쉽게 작성할 수 있도록 도와주는 라이브러리
npm install classnames
import classNames from "classnames";
기존 : className={ this.state.loading ? `${styles["button"]} ${styles[loading]}` : styles["button"]
라이브러리 이용 : className={classNames(styles["button"], {loading: this.state.loading})}
import React from "react";
import styles from "./Button.module.css";
import classNames from "classnames/bind";
const cx = classNames.bind(styles);
class Button extends React.Component {
state = {
loading: false,
};
render() {
const { loading } = this.state;
return (
<button
onClick={this.startLoading}
//loading이 true일 경우에만 클래스 이름으로 지정
className={cx("button", { loading })}
{...this.props}
/>
);
}
startLoading = () => {
this.setState({ loading: true });
setTimeout(() => {
this.setState({ loading: false });
}, 1000);
};
}
export default Button;
스타일을 지원하는 라이브러리 (별도의 css모듈 사용하지 않아도 됨)
styled components 설치
npm install styled-components
npm install styled-components@5.3.10
: 버전때문에 에러가 발생할 경우 버전5로 설치!styled components 사용 (백틱기호안에서 사용-문자로 오타발견 어려움)
import styled, { css } from "styled-components";
const StyledButton = styled.button`
background: transparent;
border-radius: 3px;
border: 2px solid pink;
color: pink;
margin: 0 1em;
padding: 0.25em 1em;
font-size: 20px;
${(props) =>
props.primary &&
css`
background: pink;
color: white;
`}
`;
export default StyledButton;
import styled, { createGlobalStyle } from "styled-components";
import "./App.css";
import StyledButton from "./components/StyledButton";
import logo from "./logo.svg";
import StyledA from "./components/StyledA";
const PrimaryStyledButton = styled(StyledButton)`
background: pink;
color: white;
`;
const UppercaseButton = (props) => (
<button {...props} children={props.children.toUpperCase()} />
);
const MyButton = (props) => (
<button className={props.className} children={`MyButton ${props.children}`} />
);
//글로벌스타일
const GlobalStyle = createGlobalStyle`
button {
color: yellow;
}
`;
const StyledMyButton = styled(MyButton)`
background: transparent;
border-radius: 3px;
border: 2px solid ${(props) => props.color || "pink"};
color: ${(props) => props.color || "pink"};
margin: 0 1em;
padding: 0.25em 1em;
font-size: 20px;
:hover {
border: 2px solid red;
}
::before {
content: "@";
}
`;
function App() {
return (
<div className="App">
<GlobalStyle />
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
<p>
<StyledButton>button</StyledButton>
<StyledButton primary>button</StyledButton>
<PrimaryStyledButton>button</PrimaryStyledButton>
<StyledButton as="a" href="/">
button
</StyledButton>
<StyledButton as={UppercaseButton}>button</StyledButton>
<StyledMyButton>button</StyledMyButton>
<StyledMyButton color="green">button</StyledMyButton>
<StyledA href="https://google.com">tag</StyledA>
</p>
</header>
</div>
);
}
export default App;
웹 컴포넌트 : 컴포넌트의 표준
react-shadow 설치
npm i react-shadow
root.div영역에만 스타일 적용 가능
import logo from "./logo.svg";
import root from "react-shadow";
const styles = `
.App {
text-align: center;
}
.App-logo {
height: 40vmin;
pointer-events: none;
}
p {
color: yellow;
}
`;
function App() {
return (
<root.div>
<div className="App">
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
</header>
</div>
<style type="text/css">{styles}</style>
</root.div>
);
}
export default App;
npm i antd
npm install --save @ant-design/icons
: 이이콘용 따로 설치해야함import logo from "./logo.svg";
import "./App.css";
import { Calendar } from "antd";
import { GithubOutlined } from "@ant-design/icons";
function App() {
return (
<div className="App">
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
<p>
<GithubOutlined />
</p>
<Calendar fullscreen={false} />
</header>
</div>
);
}
export default App;
import {Row, Col} from 'antd';
<Row>
<Col span={12} style={colStyle()}>
<Col span={12} style={colStyle()}>
</Row>
<Row gutter={16}>
<MyCol span={12}>
<MyCol span={12}>
</Row>
<Row gutter={16}>
<MyCol span={12} offset={12}>
</Row>