diff --git a/apps/examples/src/ExamplePage.tsx b/apps/examples/src/ExamplePage.tsx index 94b4fbcae..221f0d71f 100644 --- a/apps/examples/src/ExamplePage.tsx +++ b/apps/examples/src/ExamplePage.tsx @@ -28,6 +28,10 @@ export function ExamplePage({ children: React.ReactNode }) { const categories = examples.map((e) => e.id) + const [filterValue, setFilterValue] = useState('') + const handleFilterChange = (e: React.ChangeEvent) => { + setFilterValue(e.target.value) + } return ( @@ -69,6 +73,12 @@ export function ExamplePage({ Develop +