Completed
Push — main ( f6d4a8...a4cb90 )
by Cataldo
02:41
created

src/app/constants/default-configs.ts

Complexity

Total Complexity 0
Complexity/F 0

Size

Lines of Code 29
Function Count 0

Duplication

Duplicated Lines 0
Ratio 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 0
eloc 19
mnd 0
bc 0
fnc 0
dl 0
loc 29
bpm 0
cpm 0
noi 0
c 0
b 0
f 0
ccs 3
cts 3
cp 1
1 1
export const defaultTheme = {
2
  header: {
3
    style: {
4
      height: "20%",
5
      borderBottom: "2px solid #c0c0c0",
6
    },
7
  },
8
  footer: {
9
    style: {
10
      height: "10%",
11
      borderTop: "2px solid #c0c0c0",
12
    },
13
  },
14
  router: {
15
    style: { height: "70%" },
16
  },
17
  drawer: {
18
    style: {
19
      borderRight: "2px solid #c0c0c0",
20
    },
21
  },
22
};
23
24 1
export const defaultEngineConfig = {
25
  redux: { ui: true, modal: true, epics: [], reducers: {}, preload: {} },
26
};
27
28
export const defaultAppConfig = {};
29