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

8 lines
111 B
JavaScript
Raw Normal View History

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