import React from 'react'; import PropTypes from 'prop-types'; import { withStyles } from '@material-ui/core/styles'; import MenuItem from '@material-ui/core/MenuItem'; import TextField from '@material-ui/core/TextField'; import Select from '@material-ui/core/Select'; import { FormControl, Input, InputLabel, FormHelperText } from '@material-ui/core' const styles = theme => ({ container: { display: 'block', }, textField: { marginLeft: theme.spacing.unit, marginRight: theme.spacing.unit, width: 200, }, dense: { marginTop: 19, }, menu: { width: 200, }, fullWidth: { width: '100%' } }); const foodItems = [ 'Cake', 'Turkey', 'Roasted Dog', 'Turnip', 'Ratatouille' ] class TextFields extends React.Component { state = { name: 'The Grinch', foodItem: '', significantOther: false }; handleChange = name => event => { this.setState({ [name]: event.target.value, }); }; handleFoodSelect = (event) => { console.log('FOOD', event.target.value) this.setState({foodItem: event.target.value}) } handleSignificantOther = () => { this.setState({significantOther: !this.state.significantOther}) } FoodItems = () => { const items = [] for (let i = 0; i < foodItems.length; i++) { items.push() } return items } render() { const { classes } = this.props; return (
); } } TextFields.propTypes = { classes: PropTypes.object.isRequired, }; export default withStyles(styles)(TextFields);