import { Dialog, Button, DialogActions, DialogContent, DialogTitle } from '@mui/material' import React from 'react' const WinningDialog = (props) => { const okHandler = () => { props.close(false); } return ( You Win! You won {props.prizeAmount}! Come to our next meeting and show your ID to claim your prize. ) } export default WinningDialog