mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 20:16:39 -04:00
19 lines
1.2 KiB
JavaScript
19 lines
1.2 KiB
JavaScript
// import and re-export
|
|
import { Components, registerComponent, replaceComponent, getRawComponent, getComponent, copyHoCs } from 'meteor/nova:lib';
|
|
export { Components, registerComponent, replaceComponent, getRawComponent, getComponent, copyHoCs };
|
|
|
|
export { default as App } from "./components/App.jsx";
|
|
export { default as Layout } from "./components/Layout.jsx";
|
|
export { default as Icon } from "./components/Icon.jsx";
|
|
export { default as Loading } from "./components/Loading.jsx";
|
|
export { default as ShowIf } from "./components/ShowIf.jsx";
|
|
export { default as ModalTrigger } from './components/ModalTrigger.jsx';
|
|
export { default as ContextPasser } from './components/ContextPasser.jsx';
|
|
export { default as withMessages } from "./containers/withMessages.js";
|
|
export { default as withList } from './containers/withList.js';
|
|
export { default as withSingle } from './containers/withSingle.js';
|
|
export { default as withNew } from './containers/withNew.js';
|
|
export { default as withEdit } from './containers/withEdit.js';
|
|
export { default as withRemove } from './containers/withRemove.js';
|
|
export { default as withCurrentUser } from './containers/withCurrentUser.js';
|
|
export { default as withMutation } from './containers/withMutation.js';
|