aboutsummaryrefslogtreecommitdiffstats
path: root/packages
diff options
context:
space:
mode:
authorFred Carlsen <fred@sjelfull.no>2018-11-29 00:49:48 +0800
committerFred Carlsen <fred@sjelfull.no>2018-11-29 00:49:48 +0800
commitc8520c45cb33d3b48ffa2fa09189ae7e9b3300cf (patch)
tree2abc6ec9f19981fb8496891827f10220a7562ebd /packages
parentec6b47ded03af5459b78f6deabeef37bdf852217 (diff)
downloaddexon-0x-contracts-c8520c45cb33d3b48ffa2fa09189ae7e9b3300cf.tar
dexon-0x-contracts-c8520c45cb33d3b48ffa2fa09189ae7e9b3300cf.tar.gz
dexon-0x-contracts-c8520c45cb33d3b48ffa2fa09189ae7e9b3300cf.tar.bz2
dexon-0x-contracts-c8520c45cb33d3b48ffa2fa09189ae7e9b3300cf.tar.lz
dexon-0x-contracts-c8520c45cb33d3b48ffa2fa09189ae7e9b3300cf.tar.xz
dexon-0x-contracts-c8520c45cb33d3b48ffa2fa09189ae7e9b3300cf.tar.zst
dexon-0x-contracts-c8520c45cb33d3b48ffa2fa09189ae7e9b3300cf.zip
Fix linting errors
Diffstat (limited to 'packages')
-rw-r--r--packages/website/ts/@next/components/layout.tsx22
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;