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

23 lines
669 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 10:30:42 +01: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 10:38:20 +01:00
</div>
</div>
2021-01-31 10:38:20 +01:00
);
}