import { useRecoilState } from 'recoil'; 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 { commentableEntityArrayState } from '../states/commentableEntityArrayState'; import { Timeline } from './Timeline'; export function RightDrawerTimeline() { const [commentableEntityArray] = useRecoilState(commentableEntityArrayState); return ( {commentableEntityArray.map((commentableEntity) => ( ))} ); }