aboutsummaryrefslogtreecommitdiff
path: root/vnext/src/components/Types.js
blob: 2bd07458e58fc5520e86a80b6250600311fe870f (plain) (blame)
1
2
3
4
5
6
import PropTypes from 'prop-types';

export const UserType = PropTypes.shape({
    uid: PropTypes.number.isRequired,
    uname: PropTypes.string.isRequired
});