aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/communityRecipes/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/features/communityRecipes/index.ts')
-rw-r--r--src/features/communityRecipes/index.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/features/communityRecipes/index.ts b/src/features/communityRecipes/index.ts
new file mode 100644
index 000000000..828c6d867
--- /dev/null
+++ b/src/features/communityRecipes/index.ts
@@ -0,0 +1,7 @@
1import { CommunityRecipesStore } from './store';
2
3export const communityRecipesStore = new CommunityRecipesStore();
4
5export default function initCommunityRecipes(stores, actions) {
6 communityRecipesStore.start(stores, actions);
7}