리액트를 연습해하다보면 @material-ui 를 자주 쓰게 되는데
justify는 더이상 지원하지 않는다고 한다.
justify 에서 justifyContent로 바꿔 쓰면 된다.
변경전
<Grid container justify="flex-end">
<Grid item>
<Link href="/login" variant="body2">
이미 계정이 있습니까? 로그인 하세요.
</Link>
</Grid>
</Grid>
변경후
<Grid container justifyContent="flex-end">
<Grid item>
<Link href="/login" variant="body2">
이미 계정이 있습니까? 로그인 하세요.
</Link>
</Grid>
</Grid>
--
출처
https://githubhot.com/repo/jungsoft/materialui-daterange-picker/issues/24
'ERROR > react' 카테고리의 다른 글
react-scripts 은(는) 내부 또는 외부 명령 실행할 수 있는 프로그램 또는 배치 파일이 아닙니다 (0) | 2022.04.07 |
---|---|
react-create-app 설치 오류 (0) | 2022.03.18 |
'Switch' is not exported from 'react-router-dom' 에러 (0) | 2022.03.13 |