Fix some components being rendered as pages

This commit is contained in:
Gabe Kangas
2023-01-09 15:00:53 -08:00
parent d169d9d023
commit c542dc10da
13 changed files with 53 additions and 49 deletions

View File

@@ -0,0 +1,16 @@
import React from 'react';
import { EditInstanceDetails } from '../../../../../components/config/EditInstanceDetails2';
export default function ConfigServerDetails() {
return (
<div className="config-server-details-form">
<p className="description">
You should change your admin password from the default and keep it safe. For most people
it&apos;s likely the other settings will not need to be changed.
</p>
<div className="form-module config-server-details-container">
<EditInstanceDetails />
</div>
</div>
);
}