bigbuffet-rw/app/soapbox/actions/store.js

7 lines
111 B
JavaScript

export const INIT_STORE = 'INIT_STORE';
export function initStore() {
return {
type: INIT_STORE,
};
}