update reference

This commit is contained in:
2026-03-29 19:21:27 +02:00
parent f78402e021
commit 4757cf47c0
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -54,4 +54,4 @@ function DatabaseFooter() {
); );
} }
export default DatabaseFooter; export default Footer;
+2 -2
View File
@@ -4,7 +4,7 @@ import CardRow from '../components/CardRow/CardRow';
import SearchBar from '../components/SearchBar/SearchBar'; import SearchBar from '../components/SearchBar/SearchBar';
import { CardContext } from '../store/CardContext'; import { CardContext } from '../store/CardContext';
import { fetchCards, fetchCardImage } from '../services/api'; import { fetchCards, fetchCardImage } from '../services/api';
import DatabaseFooter from '../components/DatabaseFooter/DatabaseFooter'; import DatabaseFooter from '../components/Footer/Footer';
// Debounce hook // Debounce hook
function useDebouncedValue(value, delay = 250) { function useDebouncedValue(value, delay = 250) {
@@ -88,7 +88,7 @@ function HomePage() {
<p>Click a card to see its image</p> <p>Click a card to see its image</p>
)} )}
</div> </div>
<DatabaseFooter /> <Footer />
</div> </div>
); );
} }