mirror of
https://github.com/owncast/owncast.git
synced 2024-12-21 00:35:47 +03:00
17 lines
608 B
TypeScript
17 lines
608 B
TypeScript
import React from 'react';
|
|
import EditInstanceDetails from '../../EditInstanceDetails2';
|
|
|
|
// eslint-disable-next-line react/function-component-definition
|
|
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's likely the other settings will not need to be changed.
|
|
</p>
|
|
<div className="form-module config-server-details-container">
|
|
<EditInstanceDetails />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|