WIP Financial statements.

This commit is contained in:
Ahmed Bouhuolia
2020-04-05 17:49:44 +02:00
parent b09fc58042
commit b2d1a09612
21 changed files with 138 additions and 40 deletions

View File

@@ -0,0 +1,16 @@
import { createReducer } from '@reduxjs/toolkit';
import t from 'store/types';
const initialState = {
data: {
organization: {
name: 'Bigcapital, Limited Liabilities',
},
},
};
export default createReducer(initialState, {
['asdfas']: (state, action) => {
},
});

View File

@@ -0,0 +1,5 @@
export default {
};