import React from 'react'; import AdminBox from '@/components/admin/AdminBox'; import tw from 'twin.macro'; import { Context } from '@/components/admin/servers/ServerRouter'; import Button from '@/components/elements/Button'; const ServerManageContainer = () => { const server = Context.useStoreState(state => state.server); if (server === undefined) { return ( <> ); } return (

Danger! This could overwrite server data.

This will reinstall the server with the assigned service scripts.

If you need to change the install status from uninstalled to installed, or vice versa, you may do so with the button below.

This will suspend the server, stop any running processes, and immediately block the user from being able to access their files or otherwise manage the server through the panel or API.

); }; export default () => { const server = Context.useStoreState(state => state.server); if (server === undefined) { return ( <> ); } return ( ); };