前提・実現したいこと
material-uiのkeyboardtimepickerを利用しているのですが、複数利用しようと思ってもonChangeのhandleDateChangeのところで引数を渡すことができません。
どのように二つのコンポーネントを区別すればいいのでしょうか。
参考
https://material-ui.com/components/pickers/
発生している問題・エラーメッセージ
二つのコンポーネントを区別する方法がわからない
該当のソースコード
export default function MaterialUIPickers() { // The first commit of Material-UI const [selectedDate, setSelectedDate] = React.useState(new Date('2014-08-18T21:11:54')); const handleDateChange = (date) => { setSelectedDate(date); }; return ( <MuiPickersUtilsProvider utils={DateFnsUtils}> <Grid container justify="space-around"> <KeyboardTimePicker margin="normal" id="time-picker" label="Time picker" value={selectedDate} onChange={handleDateChange} //対象箇所 KeyboardButtonProps={{ 'aria-label': 'change time', }} /> <KeyboardTimePicker margin="normal" id="time-picker" label="Time picker" value={selectedDate} onChange={handleDateChange} //対象箇所 KeyboardButtonProps={{ 'aria-label': 'change time', }} /> </Grid> </MuiPickersUtilsProvider> ); }