mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2026-08-24 07:12:18 +10:00
7 lines
332 B
TypeScript
7 lines
332 B
TypeScript
export type BuilderPreviewPageLayout = "horizontal" | "vertical";
|
|
|
|
export const DEFAULT_BUILDER_PREVIEW_PAGE_LAYOUT: BuilderPreviewPageLayout = "horizontal";
|
|
|
|
export const getNextBuilderPreviewPageLayout = (pageLayout: BuilderPreviewPageLayout): BuilderPreviewPageLayout =>
|
|
pageLayout === "horizontal" ? "vertical" : "horizontal";
|