mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
* RegistrationPage with Breadcrumbs * Registration Form * client-side validations * Form page headers and description * Form HOC
14 lines
372 B
JavaScript
14 lines
372 B
JavaScript
import { PropTypes } from 'react';
|
|
|
|
export default PropTypes.shape({
|
|
full_name: PropTypes.string,
|
|
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,
|
|
});
|
|
|