(event: React.SyntheticEvent)
| 10 | |
| 11 | export function DocsSearch({ className, ...props }: DocsSearchProps) { |
| 12 | function onSubmit(event: React.SyntheticEvent) { |
| 13 | event.preventDefault() |
| 14 | |
| 15 | return toast({ |
| 16 | title: "Not implemented", |
| 17 | description: "We're still working on the search.", |
| 18 | }) |
| 19 | } |
| 20 | |
| 21 | return ( |
| 22 | <form |