()
| 104 | |
| 105 | // 🧝♂️ here you go! |
| 106 | function ShipError() { |
| 107 | return ( |
| 108 | <div className="ship-info"> |
| 109 | <div className="ship-info__img-wrapper"> |
| 110 | <img src="/img/broken-ship.webp" alt="broken ship" /> |
| 111 | </div> |
| 112 | <section> |
| 113 | <h2>There was an error</h2> |
| 114 | </section> |
| 115 | <section>There was an error loading "{shipName}"</section> |
| 116 | </div> |
| 117 | ) |
| 118 | } |
| 119 | |
| 120 | const rootEl = document.createElement('div') |
| 121 | document.body.append(rootEl) |
nothing calls this directly
no outgoing calls
no test coverage detected