mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
13 lines
377 B
JavaScript
13 lines
377 B
JavaScript
![]() |
import { checkNpmVersions } from 'meteor/tmeasday:check-npm-versions';
|
||
|
checkNpmVersions({
|
||
|
"react": "^0.14.6",
|
||
|
"formsy-react": "^0.17.0",
|
||
|
"formsy-react-components": "^0.6.6",
|
||
|
"react-bootstrap": "^0.28.3"
|
||
|
// 'rebass': '^0.2.4',
|
||
|
});
|
||
|
|
||
|
import NewDocument from "./NewDocument.jsx";
|
||
|
import EditDocument from "./EditDocument.jsx";
|
||
|
|
||
|
export default {NewDocument, EditDocument};
|