aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/communityRecipes/index.ts
blob: 828c6d8671fc2eeb6624a6121dc96ace156c86bb (plain) (blame)
1
2
3
4
5
6
7
import { CommunityRecipesStore } from './store';

export const communityRecipesStore = new CommunityRecipesStore();

export default function initCommunityRecipes(stores, actions) {
  communityRecipesStore.start(stores, actions);
}