7 lines
114 B
TypeScript
7 lines
114 B
TypeScript
export type contentLayout = {
|
|
mobile: string;
|
|
tablet?: string;
|
|
desktop?: string;
|
|
spaceBottom?: number;
|
|
};
|