1 import type { FC } from 'react';
2 import type { RouteComponentProps } from 'react-router-dom';
3 import { Redirect, Route, Switch } from 'react-router-dom';
5 import { PhotosView } from '../components/sections/Photos';
7 export const PhotosContainer: FC<RouteComponentProps> = ({ match }) => {
10 <Route path={match.url} exact component={PhotosView} />
11 <Redirect to="/photos" />