ERROR/react

Warning: Failed prop type: The prop `justify` of `ForwardRef(Grid)` is deprecated. Use `justifyContent` instead, the prop was renamed.

02:00AM 2022. 3. 15. 10:19

리액트를 연습해하다보면 @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