feat: add highlights to quotes

This commit is contained in:
codytseng 2025-11-17 22:37:04 +08:00
parent b4366325cd
commit 7065015462
5 changed files with 58 additions and 148 deletions

View file

@ -2,9 +2,10 @@ import { ScrollArea, ScrollBar } from '@/components/ui/scroll-area'
import { Separator } from '@/components/ui/separator'
import { useState } from 'react'
import HideUntrustedContentButton from '../HideUntrustedContentButton'
import QuoteList from '../QuoteList'
import ReactionList from '../ReactionList'
import ReplyNoteList from '../ReplyNoteList'
import { Tabs, TTabValue } from './Tabs'
import ReactionList from '../ReactionList'
export default function ExternalContentInteractions({
pageIndex,
@ -22,6 +23,9 @@ export default function ExternalContentInteractions({
case 'reactions':
list = <ReactionList stuff={externalContent} />
break
case 'quotes':
list = <QuoteList stuff={externalContent} />
break
default:
break
}