ServerConfig.tsx 608 B

1234567891011121314151617
  1. import React from 'react';
  2. import EditInstanceDetails from '../../EditInstanceDetails2';
  3. // eslint-disable-next-line react/function-component-definition
  4. export default function ConfigServerDetails() {
  5. return (
  6. <div className="config-server-details-form">
  7. <p className="description">
  8. You should change your admin password from the default and keep it safe. For most people
  9. it&apos;s likely the other settings will not need to be changed.
  10. </p>
  11. <div className="form-module config-server-details-container">
  12. <EditInstanceDetails />
  13. </div>
  14. </div>
  15. );
  16. }