export interface Shelf<T> {
    title: string;
    items: T;
}
