export interface IMaterial {
    componentId?: string | null;
    materialIndex?: number;
    materialName?: string;
}
export interface MaterialAtomType {
    changedMaterialInfo: Array<IMaterial>;
}
