This commit is contained in:
2025-11-16 18:01:30 +01:00
commit 858003cb0b
26 changed files with 4712 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
// Search Form Component (simplified - now just a container)
export class SearchForm {
constructor() {
// This component is now just a container
// Actual search is handled by SearchBar component
}
}