Axinom Mosaic Libraries
    Preparing search index...

    Variable ListConst

    List: <T extends Data>(
        props: ListProps<T> & {} & RefAttributes<ListElement>,
    ) => ReactElement<any, string | JSXElementConstructor<any>> | null = ...

    Renders various sets of data in a tabular format

    Type Declaration

      • <T extends Data>(
            props: ListProps<T> & {} & RefAttributes<ListElement>,
        ): ReactElement<any, string | JSXElementConstructor<any>> | null
      • Type Parameters

        Parameters

        Returns ReactElement<any, string | JSXElementConstructor<any>> | null

    <List<DataInterface>
    columns={[{propertyName: 'id', size: '1fr', label: 'Id'}]}
    data={[{id: '1',desc: 'Description 1',title: 'Item 1'}]}
    itemClicked={(item)=> {console.log(item)}}
    />