feat: Reader working, some work still need to be done

This commit is contained in:
ext.jeremy.guillot@maxicoffee.domains
2025-02-17 12:02:56 +01:00
parent 33f5a5568a
commit 668702b1fb
20 changed files with 994 additions and 127 deletions

View File

@@ -1,10 +1,10 @@
import React, { useState, useRef, useEffect } from 'react';
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import { faSearch, faPlus } from '@fortawesome/free-solid-svg-icons';
import { MockMangaRepository } from '../../../infrastructure/api/mockMangaRepository.js';
import { ApiMangaRepository } from '../../../infrastructure/api/apiMangaRepository.js';
import { SearchMangas } from '../../../application/useCases/searchMangas.js';
const mangaRepository = new MockMangaRepository();
const mangaRepository = new ApiMangaRepository();
const searchMangas = new SearchMangas(mangaRepository);
export function SearchBar({ onMangaClick, onAddMangaClick }) {