Skip to content

Commit

Permalink
added message component
Browse files Browse the repository at this point in the history
  • Loading branch information
yashpokar committed Mar 29, 2024
1 parent fb5209b commit 70d52bb
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions apps/ui/src/components/Message.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import React from 'react'

export type MessageAuthor = 'user' | 'assistant'

export interface MessageProps {
author: MessageAuthor
context: string
}

const Message: React.FC<MessageProps> = () => {
return <div className="flex items-center gap-x-2"></div>
}

export default Message

0 comments on commit 70d52bb

Please sign in to comment.