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

} spinner={

}> ); } }); export default ShareForm;