Layout scaffolding for Web apps.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

11 lines
152 B

  1. export enum Span {
  2. NARROW = 'narrow',
  3. NORMAL = 'normal',
  4. WIDE = 'wide',
  5. }
  6. export type LayoutArgs = {
  7. span: Span;
  8. mainSidebarOpen: boolean;
  9. }