first commit

This commit is contained in:
s.golasch
2023-08-01 12:47:58 +02:00
commit b1439a55bb
65 changed files with 3085 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
'use strict'
const RECEIVE_TODOS = 'RECEIVE_TODOS'
const FETCH_TODOS = 'FETCH_TODOS'
const ADD_TODO = 'ADD_TODO'
const ADDED_TODO = 'ADDED_TODO'
const UPDATE_TODO = 'UPDATE_TODO'
const DELETE_TODO = 'DELETE_TODO'
const COMPLETE_TODO = 'COMPLETE_TODO'
module.exports = {
RECEIVE_TODOS,
FETCH_TODOS,
ADD_TODO,
ADDED_TODO,
UPDATE_TODO,
DELETE_TODO,
COMPLETE_TODO,
}