Skip to content

Feature/deveeni pull request#3

Open
deveeni wants to merge 4 commits intodevelopfrom
feature/deveeni
Open

Feature/deveeni pull request#3
deveeni wants to merge 4 commits intodevelopfrom
feature/deveeni

Conversation

@deveeni
Copy link
Collaborator

@deveeni deveeni commented Mar 6, 2022

  • 등록화면 개발
  • MUI 사용

@deveeni deveeni added the feature 새로운 기능 label Mar 6, 2022
@deveeni deveeni self-assigned this Mar 6, 2022
Copy link
Contributor

@beckyi beckyi left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

오우 아이디어가 좋았습니다.

<Box>
{tagList &&
tagList.map((tag: Tag, idx: number) => (
<Chip label={tag.name} sx={{ ml: idx === 0 ? 0 : 1, mt: 1 }} />
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

key 추가해야할 것 같습니다.

<Box>
{tagList.length > 0 &&
tagList.map((tag: Tag) =>
<Chip
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

요기두 컴포넌트 여러개이므로 key 추가 부탁드려요~

import SelectShare from "./SelectShare";
import Confirm from "./Confirm";

const theme = createTheme({
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

theme(ThemeProvider)를 최상단에서 감싸면 모든 페이지에 적용되서 관리하기 편할것 같아요!

renderValue={(selected: string[]) => {
let checkedList: string[] = [];

selected.forEach((selectedItem) => {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
selected.forEach((selectedItem) => {
const checkedList = selected.map((selectedItem) => {

Copy link
Collaborator Author

@deveeni deveeni Mar 26, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

왜 이런 방식을 추천해주신건가용? 이유가 있을까요 ?

Comment on lines +79 to +82
{getStepContent(activeStep)}


{activeStep < steps.length - 1 ? (
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

vscode prettier 기능 추천드립니다~

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

feature 새로운 기능

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants