owncast/web/pages/config-server-details.tsx

21 lines
622 B
TypeScript
Raw Normal View History

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 />
2021-01-31 12:38:20 +03:00
</div>
</div>
2021-01-31 12:38:20 +03:00
);
}