mirror of
https://github.com/fspc/workstand.git
synced 2025-02-23 01:13:22 -05:00
Add propTypes.
This commit is contained in:
parent
6cf242d62e
commit
3e3db58953
@ -3,6 +3,14 @@ import { ListItem } from 'material-ui/List';
|
||||
import moment from 'moment';
|
||||
|
||||
export default class SignedInList extends React.Component {
|
||||
static propTypes = {
|
||||
members: PropTypes.arrayOf(PropTypes.shape({
|
||||
id: PropTypes.number,
|
||||
purpose: PropTypes.string,
|
||||
at: PropTypes.instanceOf(moment),
|
||||
})),
|
||||
}
|
||||
|
||||
constructor(props) {
|
||||
super(props);
|
||||
this.state = { tick: 0 };
|
||||
|
Loading…
x
Reference in New Issue
Block a user