feat: add highlights to quotes
This commit is contained in:
parent
b4366325cd
commit
7065015462
5 changed files with 58 additions and 148 deletions
|
|
@ -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
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue