'use strict'; import React from 'react'; import Button from 'react-bootstrap/lib/Button'; import Form from './form'; import Property from './property'; import InputTextAreaToggable from './input_textarea_toggable'; import AscribeSpinner from '../ascribe_spinner'; import AclInformation from '../ascribe_buttons/acl_information'; import { getLangText } from '../../utils/lang_utils.js'; let ConsignForm = React.createClass({ propTypes: { url: React.PropTypes.string, id: React.PropTypes.object, autoFocusProperty: React.PropTypes.string, email: React.PropTypes.string, message: React.PropTypes.string, labels: React.PropTypes.object, handleSuccess: React.PropTypes.func }, getInitialProps() { return { labels: {} }; }, getFormData() { return this.props.id; }, render() { const { autoFocusProperty, email, id, handleSuccess, message, labels, url } = this.props; return (

} spinner={

}>
); } }); export default ConsignForm;