7 lines
111 B
JavaScript
7 lines
111 B
JavaScript
export const INIT_STORE = 'INIT_STORE';
|
|
|
|
export function initStore() {
|
|
return {
|
|
type: INIT_STORE,
|
|
};
|
|
}
|