-
Notifications
You must be signed in to change notification settings - Fork 0
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
Setup storybook #28
Setup storybook #28
Conversation
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.
아래 수정사항이 적용 가능한지 확인해주세요!
- 컴포넌트에 16px의 padding이 들어가는데 없앨 수 있는지, 아니면 원래 컴포넌트에 있는 부분인지
- Button의 iconType에 예시 string도 주어지면 좋을 것 같음
- breadcrumb에 밑줄
네! 확인해 보겠습니다!
|
말씀해주신 사항 모두 반영하여 푸시했습니다.
이에 대한 해결책은 컴포넌트에 대한 story를 만들 때마다 설정해주어야 하는 부분입니다.
어떻게 통일하는 것이 좋을까요? @wjeongchoi |
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.
layout: "centered"
로 통일하는걸로 합시다! 문서에도 남겨주세요
요약 *
It closes #27
Storybook 초기 세팅, 컴포넌트별로 확인할 수 있도록 stories 파일 생성
초기 세팅
stories 파일 안에 Button, TextButton, BreadCrumb에 대한 story들을 만들어 보았습니다.
밑의 영상을 보시면 몇 가지 문제가 있습니다..!
storybook에서 제공하는 유저가 커스텀하여 집어 넣을 수 있는 prop의 type들이 한정적입니다.
chevron_right 같은 아이콘이 MUI Icon으로 나오지 않고 Icon 이름 그대로 나옵니다.. 이것은 아직 해결책을 찾지 못했습니다MUI Icon 문제 해결완료! `.storybook/preview-head.html` 파일로 MUI Icon을 불러오는 것으로 해결했습니다.
스크린샷
2024-11-02.9.27.46.mov
2024-11-02.9.28.32.mov
이후 Task *