Update to stage-3.

This commit is contained in:
Drew Larson
2017-05-23 19:29:56 -06:00
parent 2219366859
commit 7c2df81c6a
8 changed files with 34 additions and 90 deletions
@@ -32,15 +32,7 @@ const styles = {
},
};
export default class SignedInList extends React.Component {
static propTypes = {
members: PropTypes.arrayOf(PropTypes.shape({
id: PropTypes.number,
purpose: PropTypes.string,
at: PropTypes.instanceOf(moment),
})),
}
class SignedInList extends React.Component {
constructor(props) {
super(props);
this.state = { tick: 0 };
@@ -117,3 +109,11 @@ export default class SignedInList extends React.Component {
);
}
}
export default SignedInList.propTypes = {
members: PropTypes.arrayOf(PropTypes.shape({
id: PropTypes.number,
purpose: PropTypes.string,
at: PropTypes.instanceOf(moment),
})),
};