Skip to content

Instantly share code, notes, and snippets.

@ting11222001
Created October 5, 2020 06:39
Show Gist options
  • Save ting11222001/f070b5441d68747acdec23903c48a7a2 to your computer and use it in GitHub Desktop.
Save ting11222001/f070b5441d68747acdec23903c48a7a2 to your computer and use it in GitHub Desktop.
export default class CreateDevice extends Component {
constructor(props) {
super(props);
...
this.onChangeDate = this.onChangeDate.bind(this);
this.onSubmit = this.onSubmit.bind(this);
this.state = {
accountname:'',
description: '',
duration: 0,
date: new Date(),
accounts: []
};
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment