LasTres/js-src/components/bottom-panel.tsx

19 lines
439 B
TypeScript
Raw Normal View History

2023-06-01 08:45:43 +02:00
import * as React from 'react'
2023-06-22 21:54:28 +02:00
import PresentationItem from '@lastres/components/presentation-item'
import Presentation from '@lastres/components/presentation'
export interface BottomPanelProps {
websocket: WebSocket | null
}
2023-06-01 08:45:43 +02:00
export default function BottomPanel (): JSX.Element {
return (
2023-06-22 21:54:28 +02:00
<Presentation>
<PresentationItem>
hola
</PresentationItem>
</Presentation>
2023-06-01 08:45:43 +02:00
)
}