Remove unused code

This commit is contained in:
Tanner Collin 2017-06-20 02:03:58 +00:00
parent 13079ef54a
commit 45d88f1ddc
2 changed files with 0 additions and 10 deletions

View File

@ -32,15 +32,6 @@ export default class App extends React.Component {
});
}
doutSet(pin, value) {
this.setState({
ioState: {
...this.state.ioState,
dout: this.state.ioState.dout.map((x, i) => i == pin ? value : x),
},
});
}
sendUpdate(type, pin, value) {
this.state.socket.emit('update', {
type: type,

View File

@ -20,7 +20,6 @@ module.exports = {
devServer: {
contentBase: path.join(__dirname, "dist"),
publicPath: '/',
//inline: true,
hot: true,
host: '0.0.0.0',
disableHostCheck: true