style: fix warning from eslint

This commit is contained in:
unix
2020-03-19 02:05:17 +08:00
parent 1b2365b89f
commit 596f134c25
22 changed files with 39 additions and 32 deletions

View File

@@ -6,13 +6,13 @@ import Controls from 'lib/components/controls'
import sides from 'lib/data/metadata.json'
export interface Meta {
title: string,
description: string,
editUrl?: string,
title: string
description: string
editUrl?: string
}
export interface Props {
router: Router,
router: Router
}
export const Layout: React.FC<React.PropsWithChildren<Props>> = React.memo(({ children }) => {