Props

interface Props {
    onSelect: (
        material: {
            children: { label: string; symbol: string; value: string | number }[];
            key: string;
            label: string;
        },
    ) => void;
}

Properties

Properties

onSelect: (
    material: {
        children: { label: string; symbol: string; value: string | number }[];
        key: string;
        label: string;
    },
) => void