import gql from 'graphql-tag' import { Query, Mutation } from 'react-apollo' const InstrumentCommandFormFields = props => { const { state, onChange } = props return (
) } const InstrumentCommand = props => { const { command } = props const state = { id: null, tag: '', name: '', description: '', instrument: null, readString: '', writeString: '', parameters: [] } return ({command.description}
Tag: {command.tag}
{command.readString}
{command.writeString}