'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 AppConstants from '../../constants/application_constants'; import { getLangText } from '../../utils/lang_utils.js'; let TransferForm = React.createClass({ propTypes: { url: React.PropTypes.string, id: React.PropTypes.object, message: React.PropTypes.string, editions: React.PropTypes.array, currentUser: React.PropTypes.object, onRequestHide: React.PropTypes.func, handleSuccess: React.PropTypes.func }, getFormData(){ return this.props.id; }, render() { return (

} spinner={
}>

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