mirror of
https://github.com/owncast/owncast.git
synced 2024-11-26 14:56:14 +03:00
19 lines
614 B
TypeScript
19 lines
614 B
TypeScript
import React from 'react';
|
|
import { Typography } from 'antd';
|
|
import EditServerDetails from './components/config/edit-server-details';
|
|
|
|
const { Title } = Typography;
|
|
|
|
export default function ConfigServerDetails() {
|
|
return (
|
|
<div className="config-server-details-form">
|
|
<Title level={2}>Server Settings</Title>
|
|
<p>
|
|
You should change your stream key 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="config-server-details-container">
|
|
<EditServerDetails />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|