diff --git a/src/App.tsx b/src/App.tsx index 5f41836..53c3135 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -59,6 +59,9 @@ export default function App() { const [scrollIndex, setScrollIndex] = createSignal(50) const scrollNext = () => setScrollIndex(Math.min(scrollIndex() + 20, api().length)) + // Search + const [search, setSearch] = createSignal() + // Handle wheel for breadcrumb const [bcLeft, setBcLeft] = createSignal(0) function wheel(e: WheelEvent) @@ -84,22 +87,31 @@ export default function App() {

File Listing

- {/* Breadcrumbs */} + {/* Breadcrumb slot */}