import classNames from 'clsx'; import React from 'react'; interface IPane { /** Whether the pane is open or minimized. */ isOpen: boolean, /** Positions the pane on the screen, with 0 at the right. */ index: number, /** Children to display in the pane. */ children: React.ReactNode, /** Whether this is the main chat pane. */ main?: boolean, } /** Chat pane UI component for desktop. */ const Pane: React.FC = ({ isOpen = false, index, children, main = false }) => { const right = (404 * index) + 20; return (
{children}
); }; export { Pane };