Files
ncd-fe/app/soapbox/actions/store.js

8 lines
111 B
JavaScript

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