first commit
This commit is contained in:
19
lib/components/todo/action_constants.js
Normal file
19
lib/components/todo/action_constants.js
Normal 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,
|
||||
}
|
||||
Reference in New Issue
Block a user