mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
26 lines
No EOL
512 B
JavaScript
26 lines
No EOL
512 B
JavaScript
/*
|
|
|
|
A component to configure the "edit movie" form.
|
|
Wrapped with the "withDocument" container.
|
|
|
|
*/
|
|
|
|
import React, { PropTypes, Component } from 'react';
|
|
import NovaForm from "meteor/nova:forms";
|
|
import Movies from '../collection.js';
|
|
|
|
const MoviesEditForm = (props, context) => {
|
|
return (
|
|
<NovaForm
|
|
collection={Movies}
|
|
documentId={props.documentId}
|
|
showRemove={true}
|
|
/>
|
|
)
|
|
}
|
|
|
|
MoviesEditForm.contextTypes = {
|
|
closeCallback: React.PropTypes.func,
|
|
}
|
|
|
|
export default MoviesEditForm; |