summaryrefslogtreecommitdiff
path: root/src/pages/App.js
diff options
context:
space:
mode:
authorGeorgios Andreadis <g.andreadis@student.tudelft.nl>2017-09-01 16:42:13 +0200
committerGeorgios Andreadis <g.andreadis@student.tudelft.nl>2017-09-23 10:05:56 +0200
commit17ae0a3fafd806a5a533bf1d51a3ac708a8cf978 (patch)
treec3687bd08891ef3698f4773e44a6920856229dfe /src/pages/App.js
parenteea529f57e3ee39d2f492062688b2848ced0a747 (diff)
Implement room name edit
Diffstat (limited to 'src/pages/App.js')
-rw-r--r--src/pages/App.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/pages/App.js b/src/pages/App.js
index a6f4dad4..7f690002 100644
--- a/src/pages/App.js
+++ b/src/pages/App.js
@@ -5,6 +5,7 @@ import {openSimulationSucceeded} from "../actions/simulations";
import {fetchLatestDatacenter} from "../actions/topology";
import MapStage from "../components/map/MapStage";
import AppNavbar from "../components/navigation/AppNavbar";
+import EditRoomNameModal from "../containers/modals/EditRoomNameModal";
import TopologySidebar from "../containers/sidebars/topology/TopologySidebar";
class AppContainer extends React.Component {
@@ -25,6 +26,7 @@ class AppContainer extends React.Component {
<MapStage/>
<TopologySidebar/>
</div>
+ <EditRoomNameModal/>
</div>
);
}