import * as types from '../constants/TodoList';

export const todoListAdd = () => ({
	type: types.TODO_LIST_ADD,
});


export const TodoListToggle = () => ({
	type: types.TODO_LIST_TOGGLE,
});