aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/todos/actions.js
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2019-07-30 11:41:54 +0200
committerLibravatar Stefan Malzner <stefan@adlk.io>2019-07-30 11:41:54 +0200
commitd7ed456a7b6f73e046ba3a2ef38eb21f82f06ca4 (patch)
treef24f4f39ae38bdfdd581f451fc3e2e79f5670df5 /src/features/todos/actions.js
parentFix position of todos app (diff)
downloadferdium-app-d7ed456a7b6f73e046ba3a2ef38eb21f82f06ca4.tar.gz
ferdium-app-d7ed456a7b6f73e046ba3a2ef38eb21f82f06ca4.tar.zst
ferdium-app-d7ed456a7b6f73e046ba3a2ef38eb21f82f06ca4.zip
Make todo layer resizable
Diffstat (limited to 'src/features/todos/actions.js')
-rw-r--r--src/features/todos/actions.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/features/todos/actions.js b/src/features/todos/actions.js
new file mode 100644
index 000000000..673ce8531
--- /dev/null
+++ b/src/features/todos/actions.js
@@ -0,0 +1,10 @@
1import PropTypes from 'prop-types';
2import { createActionsFromDefinitions } from '../../actions/lib/actions';
3
4export const todoActions = createActionsFromDefinitions({
5 resize: {
6 width: PropTypes.number.isRequired,
7 },
8}, PropTypes.checkPropTypes);
9
10export default todoActions;