mirror of
https://github.com/vale981/Vulcan
synced 2025-03-12 13:36:37 -04:00
11 lines
655 B
JavaScript
11 lines
655 B
JavaScript
![]() |
import Telescope from 'meteor/nova:lib';
|
||
|
|
||
|
// containers
|
||
|
|
||
|
Telescope.registerComponent("AppContainer", require('./containers/AppContainer.jsx'));
|
||
|
Telescope.registerComponent("PostsListContainer", require('./containers/PostsListContainer.jsx'));
|
||
|
Telescope.registerComponent("PostsSingleContainer", require('./containers/PostsSingleContainer.jsx'));
|
||
|
Telescope.registerComponent("CommentsListContainer", require('./containers/CommentsListContainer.jsx'));
|
||
|
Telescope.registerComponent("UsersSingleContainer", require('./containers/UsersSingleContainer.jsx'));
|
||
|
Telescope.registerComponent("VoteContainer", require('./containers/VoteContainer.jsx'));
|