KC's Workspace
    Preparing search index...
    GridTemplateAreas:
        | { type: "none" }
        | { areas: (string | null)[]; columns: number; type: "areas" }

    A value for the grid-template-areas property.

    Type Declaration

    • { type: "none" }
    • { areas: (string | null)[]; columns: number; type: "areas" }
      • areas: (string | null)[]

        A flattened list of grid area names. Unnamed areas specified by the . token are represented as None.

      • columns: number

        The number of columns in the grid.

      • type: "areas"