From d628e0ac5162bb1baeb16fcf21b688d37bbff758 Mon Sep 17 00:00:00 2001 From: Georgios Andreadis Date: Fri, 22 Sep 2017 13:39:50 +0200 Subject: Implement dynamic web page document title change --- src/pages/Profile.js | 26 +++++++++++++++----------- 1 file changed, 15 insertions(+), 11 deletions(-) (limited to 'src/pages/Profile.js') diff --git a/src/pages/Profile.js b/src/pages/Profile.js index c8805c6f..6d09dc89 100644 --- a/src/pages/Profile.js +++ b/src/pages/Profile.js @@ -1,22 +1,26 @@ import React from 'react'; +import DocumentTitle from "react-document-title"; import {connect} from "react-redux"; import {openDeleteProfileModal} from "../actions/modals/profile"; import AppNavbar from "../components/navigation/AppNavbar"; import DeleteProfileModal from "../containers/modals/DeleteProfileModal"; const ProfileContainer = ({onDelete}) => ( -
- -
- -

- This does not delete your Google account, it simply disconnects it from the OpenDC app and deletes any - simulation info that is associated with you (simulations you own, and any authorizations you may - have on other projects). -

+ +
+ +
+ +

+ This does not delete your Google account, it simply disconnects it from the OpenDC app and deletes + any + simulation info that is associated with you (simulations you own, and any authorizations you may + have on other projects). +

+
+
- -
+ ); const mapDispatchToProps = dispatch => { -- cgit v1.2.3