From b274efe1be35f09854bf64f4d456f4fd87a94d56 Mon Sep 17 00:00:00 2001 From: John Reilly Date: Fri, 10 Feb 2017 12:31:25 +0000 Subject: [PATCH] Update react-router-tests.tsx --- react-router/react-router-tests.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/react-router/react-router-tests.tsx b/react-router/react-router-tests.tsx index 79e9012d53..de3450e803 100644 --- a/react-router/react-router-tests.tsx +++ b/react-router/react-router-tests.tsx @@ -93,10 +93,12 @@ class NotFound extends React.Component<{}, {}> { } +interface UsersProps extends RouteComponentProps<{}, {}> { } -class Users extends React.Component<{}, {}> { +class Users extends React.Component { render() { + const { location, params, routes, routes, router, routeParams } = this.props; return
This is a user list