From c8520c45cb33d3b48ffa2fa09189ae7e9b3300cf Mon Sep 17 00:00:00 2001 From: Fred Carlsen Date: Wed, 28 Nov 2018 17:49:48 +0100 Subject: Fix linting errors --- packages/website/ts/@next/components/layout.tsx | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'packages') 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; -- cgit v1.2.3