-
85 |
90 | {system.ClassName}
91 |
92 |
93 | {system.Components.map((component, qi) => {
94 | return (
95 |
96 | f === component)
101 | ? "bold"
102 | : "initial"
103 | }
104 | color={
105 | filter.some((f) => f === component)
106 | ? "primary"
107 | : "text.secondary"
108 | }
109 | gutterBottom
110 | >
111 | {component}
112 |
113 |
114 |
115 | );
116 | })}
117 |
118 | );
119 | })}
120 |