From 3b8b7625b71efa6cfcd06787ef37c848a28fa508 Mon Sep 17 00:00:00 2001 From: Daniel Rosenwasser Date: Tue, 30 May 2017 01:17:26 -0700 Subject: [PATCH] Lints. --- types/react-router/test/Children.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/types/react-router/test/Children.tsx b/types/react-router/test/Children.tsx index 8e4faad089..c3dea4f482 100644 --- a/types/react-router/test/Children.tsx +++ b/types/react-router/test/Children.tsx @@ -2,21 +2,21 @@ import * as React from 'react'; import { Route } from 'react-router'; function RouteWithFunctionChildrenAttribute() { - return
Hello!
} /> + return
Hello!
} />; } function RouteWithFunctionJsxChildren() { return {() =>
Hello!
} -
+
; } function RouteWithElementChildrenAttribute() { - return Hello!} /> + return Hello!} />; } function RouteWithElementJsxChildren() { return {
Hello!
} -
-} \ No newline at end of file +
; +}