()
| 116 | } |
| 117 | |
| 118 | function EmptyState() { |
| 119 | return ( |
| 120 | <div className="mb-4 pb-4 border-b border-slate-300"> |
| 121 | <div className="flex items-center"> |
| 122 | <Title className="flex-1 mr-2 text-slate-800 transition dark:text-slate-300"> |
| 123 | Nothing selected |
| 124 | </Title> |
| 125 | </div> |
| 126 | <div> |
| 127 | <div> |
| 128 | <Title className="text-slate-800 mb-1 overflow-ellipsis break-words dark:text-slate-300"> |
| 129 | null |
| 130 | </Title> |
| 131 | </div> |
| 132 | </div> |
| 133 | </div> |
| 134 | ); |
| 135 | } |
nothing calls this directly
no outgoing calls
no test coverage detected