diff options
author | Fred Carlsen <fred@sjelfull.no> | 2018-11-29 00:49:48 +0800 |
---|---|---|
committer | Fred Carlsen <fred@sjelfull.no> | 2018-11-29 00:49:48 +0800 |
commit | c8520c45cb33d3b48ffa2fa09189ae7e9b3300cf (patch) | |
tree | 2abc6ec9f19981fb8496891827f10220a7562ebd /packages/website/ts | |
parent | ec6b47ded03af5459b78f6deabeef37bdf852217 (diff) | |
download | dexon-sol-tools-c8520c45cb33d3b48ffa2fa09189ae7e9b3300cf.tar dexon-sol-tools-c8520c45cb33d3b48ffa2fa09189ae7e9b3300cf.tar.gz dexon-sol-tools-c8520c45cb33d3b48ffa2fa09189ae7e9b3300cf.tar.bz2 dexon-sol-tools-c8520c45cb33d3b48ffa2fa09189ae7e9b3300cf.tar.lz dexon-sol-tools-c8520c45cb33d3b48ffa2fa09189ae7e9b3300cf.tar.xz dexon-sol-tools-c8520c45cb33d3b48ffa2fa09189ae7e9b3300cf.tar.zst dexon-sol-tools-c8520c45cb33d3b48ffa2fa09189ae7e9b3300cf.zip |
Fix linting errors
Diffstat (limited to 'packages/website/ts')
-rw-r--r-- | packages/website/ts/@next/components/layout.tsx | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/packages/website/ts/@next/components/layout.tsx b/packages/website/ts/@next/components/layout.tsx index 355f32b6c..b337a6e58 100644 --- a/packages/website/ts/@next/components/layout.tsx +++ b/packages/website/ts/@next/components/layout.tsx @@ -2,29 +2,29 @@ import * as React from 'react'; import styled from 'styled-components'; interface WrapWidths { - default: string, - full: string, - medium: string, - narrow: string, - [key: string]: string, + default: string; + full: string; + medium: string; + narrow: string; + [key: string]: string; } interface ColumnWidths { - [key: string]: string, + [key: string]: string; } interface SectionProps { - noPadding?: any, - bgColor?: string, + noPadding?: any; + bgColor?: string; } interface WrapProps { - width?: 'default' | 'full' | 'medium' | 'narrow', - bgColor?: string, + width?: 'default' | 'full' | 'medium' | 'narrow'; + bgColor?: string; } interface ColumnProps { - colWidth?: '1/4' | '1/3' | '1/2' | '2/3', + colWidth?: '1/4' | '1/3' | '1/2' | '2/3'; } const GUTTER = 30 as number; |