onItemClick(e, item)}
51 | style={{
52 | opacity: activeItem ? (isActive(item) ? 1 : 0) : 1,
53 | height: activeItem ? (isActive(item) ? 'auto' : 0) : 'auto',
54 | flexDirection: activeItem
55 | ? isActive(item)
56 | ? 'column'
57 | : 'row'
58 | : 'row',
59 | marginBottom: activeItem ? 0 : 10,
60 | }}
61 | >
62 |
78 |
79 |
80 |
90 | {item.title}
91 |
92 |
93 |
94 |
95 |
96 |
97 |
{item.desc}
98 |
99 | {item.view}
100 |
101 |
102 |
109 | {item.body}
110 |
111 |
112 |
113 |
114 |
115 |