export const setContent = (content) => ({ type: 'SET_CONTENT', file: content }) export const setStyle = (style) => ({ type: 'SET_STYLE', file: style }) export const setAlpha = (alpha) => ({ type: 'SET_ALPHA', alpha, }) export const createTask = () => ({ type: 'CREATE_TASK', }) export const addTask = () => ({ type: 'ADD_TASK', })