Interface SectionItem<DataType>

Generic Section Item

interface SectionItem<DataType> {
    data: DataType[];
    title: string;
}

Type Parameters

Properties

Properties

data: DataType[]
title: string