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

21 lines
653 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">
2021-02-14 12:45:08 +03:00
<Title>Server Settings</Title>
<p className="description">
You should change your stream key 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">
<EditServerDetails />
2021-01-31 12:38:20 +03:00
</div>
</div>
2021-01-31 12:38:20 +03:00
);
}