feat(SW-439): add support for one column grid

This commit is contained in:
Fredrik Thorsson
2024-10-14 12:22:11 +02:00
parent b2290b7ad3
commit 8ea7eafb37
6 changed files with 30 additions and 4 deletions

View File

@@ -3,3 +3,5 @@ import { CardsGrid } from "@/types/trpc/routers/contentstack/blocks"
export interface CardsGridProps extends Pick<CardsGrid, "cards_grid"> {
firstItem?: boolean
}
export type Columns = 1 | 2 | 3