feat: implement sharing page

This commit is contained in:
shadcn 2023-06-16 17:06:23 +04:00
parent 137bdadaf9
commit 6962beb8e2
12 changed files with 113 additions and 69 deletions

View file

@ -17,7 +17,9 @@ export function ChatList({ messages }: ChatList) {
{messages.map((message, index) => (
<div key={index}>
<ChatMessage message={message} />
{index < messages.length - 1 && <Separator className="my-8" />}
{index < messages.length - 1 && (
<Separator className="my-4 md:my-8" />
)}
</div>
))}
</div>