From 00d2bd47cfdcc5a0e505b34f4d960c95e43061b0 Mon Sep 17 00:00:00 2001 From: Ruidy Date: Sun, 25 Oct 2020 12:10:27 +0100 Subject: [PATCH] chore: edit .gitignore --- .gitignore | 2 +- src/core/store/index.ts | 2 ++ src/core/store/todo/actions.ts | 3 +++ src/core/store/todo/reducers.ts | 3 +++ src/core/store/todo/selectors.ts | 3 +++ 5 files changed, 12 insertions(+), 1 deletion(-) 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 = () => '';