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 32ae785 commit 9d3ccb3Copy full SHA for 9d3ccb3
src/App.tsx
@@ -11,10 +11,6 @@ function App() {
11
}}
12
>
13
<FilterableProductTable />
14
- {/* <Space>
15
- <Input placeholder="Please Input" />
16
- <Button type="primary">Submit</Button>
17
- </Space> */}
18
</ConfigProvider>
19
</div>
20
);
src/components/FilterableProductTable/SearchBar/index.tsx
@@ -15,11 +15,6 @@ export default function SearchTable() {
console.log(checked);
};
- /**
- * Handles the input event for the search bar.
- *
21
- * @param e - The input event object of type React.FormEvent<HTMLInputElement>.
22
- */
23
const OnSearchInput: InputProps["onInput"] = (e: any) => {
24
console.log(e.target.value);
25
setSearchVal(e.target.value);
0 commit comments