mirror of
https://github.com/alice-lg/alice-lg.git
synced 2024-05-11 05:55:03 +00:00
13 lines
195 B
JavaScript
13 lines
195 B
JavaScript
export const API_ERROR = '@birdseye/API_ERROR';
|
|
|
|
export function apiError(error) {
|
|
return {
|
|
type: API_ERROR,
|
|
error,
|
|
};
|
|
}
|
|
|
|
export function resetApiError() {
|
|
return apiError(null);
|
|
}
|