mirror of https://github.com/fspc/workstand.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
365 B
7 lines
365 B
import { createAction } from 'redux-actions';
|
|
|
|
export const fetchBikes = createAction('fetch bikes');
|
|
export const setBikes = createAction('set bikes');
|
|
export const setBikesIsFetching = createAction('set bikes.isFetching');
|
|
export const setBikesFetched = createAction('set bikes.fetched');
|
|
export const setBikesFetchFailed = createAction('set bikes.fetchFailed');
|
|
|