7 lines
141 B
JavaScript
7 lines
141 B
JavaScript
|
export const INVALIDATE_STORE = "INVALIDATE_STORE";
|
||
|
export function invalidateStore() {
|
||
|
return {
|
||
|
type: INVALIDATE_STORE
|
||
|
};
|
||
|
}
|