UNPKG

@orchestrator-ui/orchestrator-ui-components

Version:

Library of UI Components used to display the workflow orchestrator frontend

15 lines (14 loc) 316 B
export const getNumberOfColumns = (currentBreakpoint: string | undefined) => { switch (currentBreakpoint) { case 'xxl': return 3; case 'xl': return 2; case 'l': case 'm': case 's': case 'xs': default: return 1; } };