2022-08-30 23:10:30 +00:00
|
|
|
import { FC } from 'react';
|
|
|
|
|
2022-11-23 00:02:33 +00:00
|
|
|
import ConfigPeersForm from './ConfigPeersForm';
|
|
|
|
import ManageChangedSSHKeysForm from './ManageChangedSSHKeysForm';
|
|
|
|
import ManageUsersForm from './ManageUsersForm';
|
|
|
|
import { Panel } from '../Panels';
|
2022-08-30 23:10:30 +00:00
|
|
|
|
|
|
|
const ComplexOperationsPanel: FC = () => (
|
|
|
|
<Panel>
|
2022-11-23 00:02:33 +00:00
|
|
|
<ConfigPeersForm />
|
|
|
|
<ManageChangedSSHKeysForm />
|
|
|
|
<ManageUsersForm />
|
2022-08-30 23:10:30 +00:00
|
|
|
</Panel>
|
|
|
|
);
|
|
|
|
|
|
|
|
export default ComplexOperationsPanel;
|