overviewConst.ts 466 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
const itemStyle1: React.CSSProperties = {
    width: '75%'
};
const itemStyleSucceed: React.CSSProperties = {
    width: '28%'
};

const itemStyle2: React.CSSProperties = {
    height: 38
};

// top trials entries
const entriesOption = [
    { key: '10', text: '10' },
    { key: '20', text: '20' },
    { key: '30', text: '30' },
    { key: '50', text: '40' },
    { key: '100', text: '100' }
];

export { itemStyle1, itemStyleSucceed, itemStyle2, entriesOption };