MUI 경고 대화 상자를 호출하는 더 좋은 방법
설치
npm으로 mui-react-alert 설치
npm i mui-react-alert
데모
https://codesandbox.io/s/funny-mestorf-k2dcph
사용법/예제
App.tsx
import { AlertDialog } from "mui-react-alert";
function App() {
return (
<div className="App">
<AlertDialog />
</div>
);
}
export default App;
버튼.tsx
import { showAlertConfirmarion } from "mui-react-alert";
function Button() {
return (
<button
onClick={() => {
showAlertConfirmarion({
title: "Use Google's location service?",
cancelLabel: "DISAGREE",
confirmLabel: "AGREE",
subtitle:
"Let Google help apps determine location. This means sending anonymous location data to Google, even when no apps are running.",
onConfirmation: function (): void {
alert("Say hello");
},
});
}}
>
Show alert dialog
</button>
);
}
export default Button;
Reference
이 문제에 관하여(MUI 경고 대화 상자를 호출하는 더 좋은 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/akshaysrepo/an-better-way-to-call-mui-alert-dialog-18n7텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)