19 lines
439 B
TypeScript
19 lines
439 B
TypeScript
import * as React from 'react'
|
|
|
|
import PresentationItem from '@lastres/components/presentation-item'
|
|
import Presentation from '@lastres/components/presentation'
|
|
|
|
export interface BottomPanelProps {
|
|
websocket: WebSocket | null
|
|
}
|
|
|
|
export default function BottomPanel (): JSX.Element {
|
|
return (
|
|
<Presentation>
|
|
<PresentationItem>
|
|
hola
|
|
</PresentationItem>
|
|
</Presentation>
|
|
)
|
|
}
|