feat: genre sliders (experiment) (#1182)

This commit is contained in:
sct
2021-03-16 01:06:44 +09:00
committed by GitHub
parent 8dc69bddd9
commit 1c4515a1ae
10 changed files with 387 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
export interface GenreSliderItem {
id: number;
name: string;
backdrops: string[];
}