parent
b3002ec297
commit
5a3c49176a
@ -0,0 +1,16 @@ |
||||
import React from "react"; |
||||
import { toBuyApi } from '../services/api'; |
||||
import { FormControl, InputLabel, Select, MenuItem } from "@mui/material"; |
||||
|
||||
const StuffNameDropDown = ({ value, onChange }) => { |
||||
return ( |
||||
<FormControl fullWidth> |
||||
<InputLabel>材料を選択</InputLabel> |
||||
<Select value={value} onChange={onChange}> |
||||
<MenuItem value="じゃがいも">野菜</MenuItem> |
||||
</Select> |
||||
</FormControl> |
||||
); |
||||
}; |
||||
|
||||
export default StuffNameDropDown; |
Loading…
Reference in new issue