Upgrades vault controller to tgui-next.

This commit is contained in:
skoglol
2019-10-19 04:47:58 +02:00
parent 17a224c9ca
commit 0aee45198b
5 changed files with 44 additions and 6 deletions

View File

@@ -22,6 +22,7 @@ import { KitchenSink } from './interfaces/KitchenSink';
import { ThermoMachine } from './interfaces/ThermoMachine';
import { Wires } from './interfaces/Wires';
import { Mint } from './interfaces/Mint';
import { VaultController} from './interfaces/VaultController';
const ROUTES = {
airalarm: {
@@ -116,6 +117,10 @@ const ROUTES = {
component: () => Mint,
scrollable: false,
},
vault_controller: {
component: () => VaultController,
scrollable: false,
},
};
export const getRoute = state => {