๋ฐ์ํ
Intro
์๋ ํ์ธ์. ์ด๋ฒ ์๊ฐ์๋ MUI์ Dialog ์์ background color ๋ฅผ ๋ฐ๊พธ๋ ๋ฐฉ๋ฒ์ ๋ํด ์์๋ณด๊ฒ ์ต๋๋ค.
How to do
<Dialog
{...otherProps}
PaperProps={{
style: {
backgroundColor: 'red',
},
}}
>
{/* ... your content ... */}
</Dialog>
์์ ๊ฐ์ด PaperPorps ์์ฑ์ ์ฌ์ฉํ์ฌ backgroundColor๋ฅผ ์ง์ ํด์ค ์ ์์ต๋๋ค.
๋ฐ์ํ