Fix jslint

This commit is contained in:
Paulo Gustavo Veiga
2021-02-16 22:01:25 -08:00
parent 8c7b2c810b
commit 2692f58aad
6 changed files with 35 additions and 41 deletions

View File

@ -1,7 +1,7 @@
import React from 'react';
import { StyledCanvas } from './styled';
const Canvas = () => (
const Canvas = (): React.ReactElement => (
<StyledCanvas>canvas</StyledCanvas>
);

View File

@ -1,7 +1,7 @@
import React from 'react';
import { StyledFooter } from './styled';
const Footer = () => (
const Footer = (): React.ReactElement => (
<StyledFooter>footer</StyledFooter>
);

View File

@ -4,7 +4,7 @@ import TopBar from '../top-bar';
import Canvas from '../canvas';
import { StyledFrame } from './styled';
const Frame = () => (
const Frame = (): React.ReactElement => (
<StyledFrame>
<TopBar />
<Canvas />

View File

@ -1,7 +1,7 @@
import React from 'react';
import { StyledTopBar } from './styled'
const TopBar = () => (
const TopBar = ():React.ReactElement => (
<StyledTopBar>top bar</StyledTopBar>
);

View File

@ -1,3 +1,4 @@
const unit = 4; // pixels
export const XS = '4px';
@ -6,4 +7,4 @@ export const M = '16px';
export const L = '24px';
export const XL = '24px';
export const times = (n: number) => `${unit * n}px`;
export const times = (n: number):string => `${unit * n}px`;