feature (image): EXIF viewer on photos

This commit is contained in:
Mickael KERJEAN
2018-05-30 21:19:03 +10:00
parent aebca52060
commit b177a97d27
13 changed files with 334 additions and 43 deletions

View File

@ -2,7 +2,7 @@ import React from 'react';
import { BrowserRouter, Route, IndexRoute, Switch } from 'react-router-dom';
import { NotFoundPage, ConnectPage, HomePage, LogoutPage, FilesPage, ViewerPage } from './pages/';
import { Bundle, URL_HOME, URL_FILES, URL_VIEWER, URL_LOGIN, URL_LOGOUT } from './helpers/';
import { ModalPrompt, Notification, Audio, Video } from './components/';
import { ModalPrompt, AlertModal, Notification, Audio, Video } from './components/';
export default class AppRouter extends React.Component {
render() {
@ -19,6 +19,7 @@ export default class AppRouter extends React.Component {
</Switch>
</BrowserRouter>
<ModalPrompt />
<AlertModal />
<Notification />
</div>
);