| Total Complexity | 1 |
| Complexity/F | 1 |
| Lines of Code | 15 |
| Function Count | 1 |
| Duplicated Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | import configureStore from 'core/state/configureStore' |
||
| 2 | |||
| 3 | export default () => { |
||
| 4 | const initialState = { |
||
| 5 | drawer: { |
||
| 6 | open: false |
||
| 7 | } |
||
| 8 | } |
||
| 9 | |||
| 10 | const store = configureStore(initialState) |
||
| 11 | |||
| 12 | return { |
||
| 13 | store |
||
| 14 | } |
||
| 15 | } |
||
| 16 |