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 +
; +}