mirror of
https://github.com/mosh-hamedani/game-hub.git
synced 2026-05-21 12:14:32 +02:00
11 lines
197 B
TypeScript
11 lines
197 B
TypeScript
import useData from "./useData";
|
|
|
|
export interface Genre {
|
|
id: number;
|
|
name: string;
|
|
image_background: string;
|
|
}
|
|
|
|
const useGenres = () => useData<Genre>('/genres');
|
|
|
|
export default useGenres; |