const React = require("react"); const styles = { field: { display: "flex", flexDirection: "row", alignItems: "center", padding: "10px 0" }, title: { width: "200px", textAlign: "right", padding: "20px 40px", fontSize: "2em", fontFamily: "Helvetica" }, range: { flex: 1, height: "50px" } }; class Field extends React.Component { render () { const { min, max, step, value, onChange, name, width } = this.props; return ; } } module.exports = Field;