main
tsx 13 lines 283 Bytes
Raw
1 import { FloatingPanel } from './floating-panel.js'
2 import type { JSX } from 'react'
3
4 export const ConnectingPanel = (): JSX.Element => {
5 return (
6 <>
7 <FloatingPanel>
8 <h2>Please wait</h2>
9 <p>Connecting to libp2p...</p>
10 </FloatingPanel>
11 </>
12 )
13 }