feat: quotes
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
import { useSecondaryPage } from '@/PageManager'
|
||||
import { Button } from '@/components/ui/button'
|
||||
import { Skeleton } from '@/components/ui/skeleton'
|
||||
import { toNote } from '@/lib/link'
|
||||
import { useMuteList } from '@/providers/MuteListProvider'
|
||||
import { Event } from 'nostr-tools'
|
||||
@@ -84,3 +85,22 @@ export default function ReplyNote({
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
export function ReplyNoteSkeleton() {
|
||||
return (
|
||||
<div className="px-4 py-3 flex items-start space-x-2 w-full">
|
||||
<Skeleton className="w-8 h-8 rounded-full shrink-0" />
|
||||
<div className="w-full">
|
||||
<div className="py-1">
|
||||
<Skeleton className="h-3 w-16" />
|
||||
</div>
|
||||
<div className="my-1">
|
||||
<Skeleton className="w-full h-4 my-1 mt-2" />
|
||||
</div>
|
||||
<div className="my-1">
|
||||
<Skeleton className="w-2/3 h-4 my-1" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user