add api call to save notes. internally use ts for time data for notes and session
import * as types from '../constants/actionTypes';
export const loginSubmit = (username, password) => {
return {
type: types.AUTH_LOGIN_SUBMIT,
username,
password
};
}
export const logout = () => {
return {
type: types.AUTH_LOGOUT
};
}