mirror of
https://github.com/documenso/documenso.git
synced 2026-07-12 22:15:01 +10:00
11 lines
208 B
TypeScript
11 lines
208 B
TypeScript
export type Viewport = {
|
|
name: string;
|
|
width: number;
|
|
};
|
|
|
|
export const viewports: Viewport[] = [
|
|
{ name: 'Mobile', width: 390 },
|
|
{ name: 'Tablet', width: 768 },
|
|
{ name: 'Desktop', width: 1024 },
|
|
];
|