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

} spinner={

}>

Make sure that display instructions and technology details are correct.
They cannot be edited after the transfer.
); } }); export default TransferForm;