mirror of
https://github.com/LibreChat-AI/librechat.ai.git
synced 2026-03-27 10:48:32 +07:00
9 lines
246 B
TypeScript
9 lines
246 B
TypeScript
import { cn } from '@/lib/utils'
|
|
import { Tweet as ReactTweet } from 'react-tweet'
|
|
|
|
export const Tweet = ({ id, className }: { id: string; className?: string }) => (
|
|
<div className={cn('mt-2', className)}>
|
|
<ReactTweet id={id} />
|
|
</div>
|
|
)
|