2016-11-11 17:36:32 +01:00
|
|
|
import './fragments.js';
|
2016-11-10 15:39:04 +09:00
|
|
|
|
2016-11-11 11:23:39 +01:00
|
|
|
import withApp from './containers/withApp.js';
|
2016-11-11 16:42:19 +09:00
|
|
|
import withPostsList from './containers/withPostsList.js';
|
|
|
|
import withPostsSingle from './containers/withPostsSingle.js';
|
|
|
|
import withCommentsList from './containers/withCommentsList.js';
|
2016-11-11 18:19:18 +09:00
|
|
|
import withUsersSingle from './containers/withUsersSingle.js';
|
2016-11-11 10:35:29 +01:00
|
|
|
import withCategoriesList from './containers/withCategoriesList.js';
|
2016-11-11 16:42:19 +09:00
|
|
|
|
2016-11-11 18:29:49 +09:00
|
|
|
import withVoteMutation from './mutations/withVoteMutation.js';
|
|
|
|
|
2016-11-11 10:38:26 +01:00
|
|
|
export {
|
|
|
|
// query containers
|
2016-11-11 11:23:39 +01:00
|
|
|
withApp,
|
2016-11-11 10:38:26 +01:00
|
|
|
withPostsList,
|
|
|
|
withPostsSingle,
|
|
|
|
withCommentsList,
|
|
|
|
withUsersSingle,
|
|
|
|
withCategoriesList,
|
|
|
|
|
|
|
|
// mutation containers
|
|
|
|
withVoteMutation,
|
|
|
|
}
|