| 3 | import './App.css'; |
| 4 | |
| 5 | export interface IAnime { |
| 6 | i?: number; |
| 7 | title: string; |
| 8 | image_url: string; |
| 9 | episodes: number; |
| 10 | synopsis: string; |
| 11 | score: number; |
| 12 | favorites?: any; |
| 13 | setFavorites?: any; |
| 14 | } |
| 15 | |
| 16 | export const App = () => { |
| 17 | // const [likedAnime, setLikedAnime] = useState<Array<IAnime>>([]); |
nothing calls this directly
no outgoing calls
no test coverage detected