From 9463fa8ec267a52c97d9211b12ce9de455e31681 Mon Sep 17 00:00:00 2001 From: Chi Vinh Le Date: Wed, 3 Oct 2018 00:52:55 +0200 Subject: [PATCH] fix: apply suggestions --- src/core/client/admin/components/App.tsx | 10 ++++------ src/types/farce.d.ts | 1 + 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/src/core/client/admin/components/App.tsx b/src/core/client/admin/components/App.tsx index 57a3ce8e1..e35ebc9af 100644 --- a/src/core/client/admin/components/App.tsx +++ b/src/core/client/admin/components/App.tsx @@ -4,12 +4,10 @@ import styles from "./App.css"; import Navigation from "./Navigation"; const App: StatelessComponent = ({ children }) => ( -
- - - {children} - -
+ + + {children} + ); export default App; diff --git a/src/types/farce.d.ts b/src/types/farce.d.ts index 746415c18..509458702 100644 --- a/src/types/farce.d.ts +++ b/src/types/farce.d.ts @@ -1,4 +1,5 @@ declare module "farce" { + // TODO: provide better typings. export class BrowserProtocol {} export class queryMiddleware {} }