MCPcopy Index your code
hub / github.com/SuboptimalEng/coding-tutorials / IAnime

Interface IAnime

react-anime/src/App.tsx:5–14  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3import './App.css';
4
5export 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
16export const App = () => {
17 // const [likedAnime, setLikedAnime] = useState<Array<IAnime>>([]);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected