SG
Size: a a a
SG
KL
LK
https://take.ms/RdX9x - this is result
export const SystemsAnalysisGrid = (props: ISystemsAnalysisListProps) => {
const Cell = (props: ListChildComponentProps) => {
const { columnIndex, rowIndex, style } = props;
return (
<div style={style} key={`${rowIndex},${columnIndex}`}>
<SystemsAnalysisCard />
</div>
);
};
return (
<AutoSizer>
{({ height, width }: { height: number; width: number }) => (
<FixedSizeGrid columnCount={4} columnWidth={313} height={height} rowCount={1000} rowHeight={213} width={width}>
{Cell}
</FixedSizeGrid>
)}
</AutoSizer>
);
};
RK
SG
RK
SG
OS
OS
OS
BD
LM
D
SG
D
D
SG
D
SG