Skeleton loader

This commit is contained in:
2024-10-04 13:16:05 +02:00
parent 17e6b08129
commit e2f6fb9c52
20 changed files with 458 additions and 286 deletions

View File

@@ -1,5 +1,5 @@
import { EventModel } from "./eventModel"
import { RatingModel } from "./ratingModel"
import { TourModel } from "./tourModel"
export class BandModel {
id: number
@@ -18,5 +18,5 @@ export class BandModel {
genres: Array<{
name: string
}>
tours: Array<TourModel>
events: Array<EventModel>
}