overviewConst.ts 600 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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' }
];

21
const durationUnit = [
Lijiaoa's avatar
Lijiaoa committed
22
23
24
    { key: 'm', text: 'min' },
    { key: 'h', text: 'hour' },
    { key: 'd', text: 'day' }
25
26
27
];

export { itemStyle1, itemStyleSucceed, itemStyle2, entriesOption, durationUnit };