diff options
| author | Georgios Andreadis <g.andreadis@student.tudelft.nl> | 2017-09-06 22:07:16 +0200 |
|---|---|---|
| committer | Georgios Andreadis <g.andreadis@student.tudelft.nl> | 2017-09-23 10:05:57 +0200 |
| commit | d5a92d3006561fd631279b68b23a1f8075b28bb8 (patch) | |
| tree | 39797ed1e314e5e3cd8521239141af1334f18ec5 /src/pages | |
| parent | 02eafd26b8841ed5896ab83672aba13d569ea63d (diff) | |
Add a button to delete the currently viewed room
Diffstat (limited to 'src/pages')
| -rw-r--r-- | src/pages/App.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/pages/App.js b/src/pages/App.js index f74c3fc8..001644a2 100644 --- a/src/pages/App.js +++ b/src/pages/App.js @@ -6,6 +6,7 @@ import {openSimulationSucceeded} from "../actions/simulations"; import {fetchLatestDatacenter, resetCurrentDatacenter} from "../actions/topology"; import MapStage from "../components/map/MapStage"; import AppNavbar from "../components/navigation/AppNavbar"; +import DeleteRoomModal from "../containers/modals/DeleteRoomModal"; import EditRoomNameModal from "../containers/modals/EditRoomNameModal"; import TopologySidebar from "../containers/sidebars/topology/TopologySidebar"; import KeymapConfiguration from "../shortcuts/keymap"; @@ -41,6 +42,7 @@ class AppContainer extends React.Component { <TopologySidebar/> </div> <EditRoomNameModal/> + <DeleteRoomModal/> </div> ); } |
