fleet/frontend/interfaces/registration_form_data.js
2016-12-01 13:57:19 -05:00

13 lines
341 B
JavaScript

import { PropTypes } from 'react';
export default PropTypes.shape({
username: PropTypes.string,
password: PropTypes.string,
password_confirmation: PropTypes.string,
email: PropTypes.string,
org_name: PropTypes.string,
org_web_url: PropTypes.string,
org_logo_url: PropTypes.string,
kolide_web_address: PropTypes.string,
});