mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 21:30:31 +00:00
WIP Financial statements.
This commit is contained in:
0
client/src/store/settings/settings.actions.js
Normal file
0
client/src/store/settings/settings.actions.js
Normal file
16
client/src/store/settings/settings.reducer.js
Normal file
16
client/src/store/settings/settings.reducer.js
Normal 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) => {
|
||||
|
||||
},
|
||||
});
|
||||
0
client/src/store/settings/settings.selectors.js
Normal file
0
client/src/store/settings/settings.selectors.js
Normal file
5
client/src/store/settings/settings.type.js
Normal file
5
client/src/store/settings/settings.type.js
Normal file
@@ -0,0 +1,5 @@
|
||||
|
||||
|
||||
export default {
|
||||
|
||||
};
|
||||
Reference in New Issue
Block a user