| 6 | const examples = ["Give me an example schema about employee", "How to create a view in MySQL?"]; |
| 7 | |
| 8 | interface Props { |
| 9 | className?: string; |
| 10 | sendMessage: (content: string) => Promise<void>; |
| 11 | } |
| 12 | |
| 13 | const EmptyView = (props: Props) => { |
| 14 | const { className, sendMessage } = props; |
nothing calls this directly
no outgoing calls
no test coverage detected