(props: Props)
| 127 | } |
| 128 | |
| 129 | function initState(props: Props): State { |
| 130 | return { |
| 131 | showSystemDialog: false, |
| 132 | showVegaDialog: false, |
| 133 | dataRefType: defaultDataRefType(props.dataFile), |
| 134 | spec: null, |
| 135 | }; |
| 136 | } |
| 137 | |
| 138 | function signalGroupKey(key: string) { |
| 139 | for (let i = 0; i < strings.signalGroups.length; i++) { |
no test coverage detected