This commit is contained in:
2026-03-29 19:15:13 +02:00
parent 080620a35c
commit f78402e021
2 changed files with 59 additions and 0 deletions
+2
View File
@@ -4,6 +4,7 @@ import CardRow from '../components/CardRow/CardRow';
import SearchBar from '../components/SearchBar/SearchBar';
import { CardContext } from '../store/CardContext';
import { fetchCards, fetchCardImage } from '../services/api';
import DatabaseFooter from '../components/DatabaseFooter/DatabaseFooter';
// Debounce hook
function useDebouncedValue(value, delay = 250) {
@@ -87,6 +88,7 @@ function HomePage() {
<p>Click a card to see its image</p>
)}
</div>
<DatabaseFooter />
</div>
);
}