β
λ¬Έμ
- Next Jsλ‘ κ°λ°νλ μ€ muiλ₯Ό μ¬μ©νμ μ€λ₯κ° λ°μν¨
- μ²μ λ λμμλ§ μ€λ₯κ° λ¨κ³ νλ©΄μ UIκ° λνλ λ€μλ λ¬Έμ μμ΄ μλν¨
π μμΈ νμ
- ν¬λ‘¬μ μ±λ₯ ν
μ€νΈλ₯Ό ν΅ν΄ μμ λ΄€μ λ muiμ CSSμ μΈ λΆλΆμμ μ€λ κ±Έλ¦°λ€κ³ μκ°νλ€.
βοΈ λ¬Έμ κ° λλ μ½λ
LiveStudy.tsx
<Button
disabled
sx={{
'&.Mui-disabled': {
background: '#d9d9d9',
color: 'white',
},
backgroundColor: 'black',
color: 'white',
}}
>
μ€μκ° μμ
λ°λ‘κ°κΈ°
</Button>
- ν΄λΉ μ½λμ κ°μ΄ MUIλ₯Ό 컀μ€ν°λ§μ΄μ§ νλ λΆλΆμμ sxλ₯Ό ν΅ν΄ κ³μ cssλ₯Ό μμ μ λ°λ³΅νκ² λλ€λ³΄λ μ±λ₯μ΄ μ νλλ€κ³ μκ°νλ€.
π ν΄κ²° λ°©μ
- Emotion/styledλ₯Ό ν΅ν΄ MUIλ₯Ό μ»΄ν¬λνΈν ν¨μΌλ‘ styleμ νλ²μ μ²λ¦¬νλ©΄ λ κ² κ°λ€κ³ μκ°νλ€.
const LiveButton = styled(Button)`
&.Mui-disabled {
background-color: #d9d9d9;
color: white;
}
background-color: black;
color: white;
width: 38.75vw;
`;
λλμ
- ν΄λΉ μ¬μ§λ€μ λ΄€μ λ μ€ν¬λ¦½νΈ νκ°μ κΈΈμ΄κ° νμ ν μ€μ΄λ κ²μ λ³Ό μ μλ€.
- λ¬Όλ‘ μκ°μ΄ μ€μ΄λ€κΈ΄ νμ§λ§ μ¬μ ν μ€μΌ μ μλ€κ³ μκ°μ΄ λ€μκ³ , λ€μλ²μ webpack chunk λΆλ¦¬λ₯Ό ν΅ν΄μ μ±λ₯μ ν₯μμμΌλ³Ό μκ°μ΄λ€.
π μ°Έμ‘°
https://mui.com
https://agilejung.tistory.com/entry/MUI%EB%A5%BC-%EC%82%AC%EC%9A%A9%ED%95%98%EB%8A%94-%EB%B0%A9%EB%B2%95