()
| 149 | } |
| 150 | |
| 151 | const renderLoading = () => { |
| 152 | if (!loading || loaded) return null |
| 153 | return ( |
| 154 | <div tw="absolute left-0 top-0 w-full h-full flex justify-center items-center text-primary"> |
| 155 | <Icon name="loading" /> |
| 156 | </div> |
| 157 | ) |
| 158 | } |
| 159 | |
| 160 | const isError = state === 'error' || !!errorMsg |
| 161 |
no outgoing calls
no test coverage detected
searching dependent graphs…