Haystack/frontend/src/index.tsx
Dmytro Kondakov 8af4f62492 feat(app): restructure routing and implement Search component
- Refactored the App component to streamline routing using the Router and Route components.
- Introduced a new Search component to handle search functionality, including input handling and result display.
- Removed inline search logic from the App component for better separation of concerns.
- Updated index.tsx to render the App component directly, simplifying the routing structure.
2025-04-14 08:47:57 +02:00

9 lines
186 B
TypeScript

/* @refresh reload */
import { render } from "solid-js/web";
import "./index.css";
import { App } from "./App";
render(() => <App />, document.getElementById("root") as HTMLElement);