const routes = [
{
path: "/",
exact: true,
component: Home
},
{
path: "/news",
component: News
}
];
const App = ({ location }) => (
<Switch>
<Route
location={location}
exact
path="/"
render={() => (<Articles documentTitleID="popular_articles_page.title" />)}
/>
</Switch>
)