We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Inline style을 지양하고, 기존의 inline style을 emotion으로 대체합니다.
emotion
jsx파일의 emotion 사용법
import { css } from "@emotion/css"; const Component = () => ( <div className={css({ background: "red", })} /> );
tsx파일의 emotion 사용법
const Component = () => ( <div css={{ background: "red", }} /> );
The text was updated successfully, but these errors were encountered:
@antaechan @0ev @Hyogyeong8 @withSang @imYourChoi @chlehdwon
Sorry, something went wrong.
@emotion/react
14KGun
Successfully merging a pull request may close this issue.
Summary
Inline style을 지양하고, 기존의 inline style을
emotion
으로 대체합니다.jsx파일의 emotion 사용법
tsx파일의 emotion 사용법
Emotion document
Tasks
The text was updated successfully, but these errors were encountered: