import { useRecoilValue } from 'recoil'; import { viewableCommentThreadIdState } from '@/comments/states/viewableCommentThreadIdState'; import { RightDrawerBody } from '@/ui/layout/right-drawer/components/RightDrawerBody'; import { RightDrawerPage } from '@/ui/layout/right-drawer/components/RightDrawerPage'; import { RightDrawerTopBar } from '@/ui/layout/right-drawer/components/RightDrawerTopBar'; import { CommentThread } from '../CommentThread'; export function RightDrawerEditCommentThread() { const commentThreadId = useRecoilValue(viewableCommentThreadIdState); return ( {commentThreadId && } ); }