diff --git a/.gitignore b/.gitignore index fddff83..ac07b95 100644 --- a/.gitignore +++ b/.gitignore @@ -21,4 +21,4 @@ npm-debug.log* yarn-debug.log* yarn-error.log* -.idea/vcs.xml +.idea/ diff --git a/src/core/store/index.ts b/src/core/store/index.ts index c579700..a65f247 100644 --- a/src/core/store/index.ts +++ b/src/core/store/index.ts @@ -1 +1,3 @@ // init redux here + +export const store = {}; diff --git a/src/core/store/todo/actions.ts b/src/core/store/todo/actions.ts index e69de29..531d4cd 100644 --- a/src/core/store/todo/actions.ts +++ b/src/core/store/todo/actions.ts @@ -0,0 +1,3 @@ +// store actions + +export const action = ''; diff --git a/src/core/store/todo/reducers.ts b/src/core/store/todo/reducers.ts index e69de29..0c60b80 100644 --- a/src/core/store/todo/reducers.ts +++ b/src/core/store/todo/reducers.ts @@ -0,0 +1,3 @@ +// reducers + +export const reducer = () => {}; diff --git a/src/core/store/todo/selectors.ts b/src/core/store/todo/selectors.ts index e69de29..408a48b 100644 --- a/src/core/store/todo/selectors.ts +++ b/src/core/store/todo/selectors.ts @@ -0,0 +1,3 @@ +// selectors + +export const selector = () => '';