mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-25 21:19:44 +01:00
Moves simple ntos interfaces to .tsx
This commit is contained in:
+1
-4
@@ -1,10 +1,7 @@
|
||||
import { useBackend } from '../backend';
|
||||
import { NtosWindow } from '../layouts';
|
||||
import { CommunicationsConsoleContent } from './CommunicationsConsole';
|
||||
|
||||
export const NtosCommunicationsConsole = (props, context) => {
|
||||
const { act, data } = useBackend(context);
|
||||
|
||||
export const NtosCommunicationsConsole = () => {
|
||||
return (
|
||||
<NtosWindow width={400} height={600} resizable>
|
||||
<NtosWindow.Content scrollable>
|
||||
+1
-4
@@ -1,10 +1,7 @@
|
||||
import { useBackend } from '../backend';
|
||||
import { NtosWindow } from '../layouts';
|
||||
import { IdentificationComputerContent } from './IdentificationComputer';
|
||||
|
||||
export const NtosIdentificationComputer = (props, context) => {
|
||||
const { act, data } = useBackend(context);
|
||||
|
||||
export const NtosIdentificationComputer = () => {
|
||||
return (
|
||||
<NtosWindow width={600} height={700} resizable>
|
||||
<NtosWindow.Content scrollable>
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
import { NtosWindow } from '../layouts';
|
||||
import { ShutoffMonitorContent } from './ShutoffMonitor';
|
||||
|
||||
export const NtosShutoffMonitor = (props, context) => {
|
||||
export const NtosShutoffMonitor = () => {
|
||||
return (
|
||||
<NtosWindow width={627} height={700} resizable>
|
||||
<NtosWindow.Content>
|
||||
Reference in New Issue
Block a user