{items.map((app) => {
const { component: TileComponent, ...tile } = Tiles['app'];
return (
);
})}
{Object.entries(integrations).map(([k, v]) => {
const { component: TileComponent, ...tile } = Tiles[k as keyof typeof Tiles];
return (
);
})}
);
};
const useMinRowForFullHeight = (wrapperRef: RefObject