We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca6929e commit 185c3afCopy full SHA for 185c3af
README.md
@@ -7,6 +7,7 @@ First, run the development server:
7
```bash
8
bun dev
9
```
10
+
11
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
12
13
You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.
components/docs/sidebar/DocsSearch.tsx
@@ -1,14 +1,12 @@
1
"use client";
2
3
import SearchBox from "@/components/docs/search/SearchBox";
4
-import { DocSearchProps } from "@/components/docs/search/types";
5
-
6
const DocsSearch = ({
className = "",
placeholder = "Search something...",
minQueryLength = 2,
debounceTime = 300,
-}: DocSearchProps) => {
+}) => {
return (
<SearchBox
14
className={className}
0 commit comments