-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
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
[FE] 디자인 시스템 세팅 #8
[FE] 디자인 시스템 세팅 #8
Conversation
- 로고 컴포넌트, GlobalStyle, designSystem 생성 - icon svg 파일 업로드 - Pretendard font
fe/src/App.tsx
Outdated
import GlobalStyle from "styles/GlobalStyle"; | ||
import designSystem from "styles/designSystem"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@components
처럼 src/
에 있는 최상단 폴더들을 path alias로 등록하면 좋을것 같아요.
fe/src/styles/designSystem.ts
Outdated
@@ -0,0 +1,53 @@ | |||
const designSystem = { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
단 한가지를 export default
할 때, 이렇게 const
로 declare를 안하고 바로 export default { colors: { ... }, ... }
이런식으로 하는 것은 어떤가요? 어차피 파일 이름이 충분히 무엇인지 나타내는 것 같아요.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
그리고 위에 GlobalStyle
도 동일하게 할 수 있을거 같아요.
- design modules 불필요한 변수 선언 없이 export default - src 최상단 디렉터리 path alias 선언
92e2d65
to
37707d1
Compare
* #7 design: 디자인 시스템 세팅 (#8) * #7 design: 디자인 시스템 세팅 - 로고 컴포넌트, GlobalStyle, designSystem 생성 - icon svg 파일 업로드 - Pretendard font * #7 refactor: 로고 컴포넌트 props 구조 수정 * #7 refactor: 디자인 시스템 세팅 리뷰 반영 - design modules 불필요한 변수 선언 없이 export default - src 최상단 디렉터리 path alias 선언 * #7 design: light/dark 모드 design system 세팅 --------- Co-authored-by: 유지수 Jisoo Yoo <[email protected]>
Issues
What is this PR? 👓
To reviewers 👋