mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-04 21:58:54 -05:00
26 lines
448 B
TypeScript
26 lines
448 B
TypeScript
|
|
export function homePageCols(breakpoint: string){
|
|
switch (breakpoint) {
|
|
case "xs": {
|
|
return 1
|
|
}
|
|
case "sm": {
|
|
return 2
|
|
}
|
|
case "md": {
|
|
return 4
|
|
}
|
|
case "lg": {
|
|
return 4
|
|
}
|
|
case "xl": {
|
|
return 5
|
|
}
|
|
case "xxl": {
|
|
return 6
|
|
}
|
|
default: {
|
|
return 1
|
|
}
|
|
}
|
|
} |