import React from 'react'; /** * * The ShareRecordingPane component provides a pane interface for sharing * * recordings. It includes options for specifying playback timestamps and generates * * shareable links accordingly. The pane allows users to copy the shareable link * * and adjust playback timestamps. * * @example * * import { useState } from "react"; * import { Button } from "neetoui"; * import ShareRecordingPane from "components/ShareRecordingPane"; * * const ShareRecordingPaneExample = () => { * const [isOpen, setIsOpen] = useState(false); * * return ( * <> *