import { View, Label, Image } from "./evg_types"; /** * subgrid: three cards whose captions line up with each other. * * Each card spans the outer grid's two rows and declares * `grid-template-rows: subgrid`, so the photo band and the caption band are * shared across all three — even though the captions are different lengths. * Without subgrid each card would divide its own height and the captions * would sit at three different heights. */ function render() { return ( ); }