2021-01-28 12:08:57 +01:00
|
|
|
import React from 'react';
|
|
|
|
import { Typography } from 'antd';
|
2021-02-07 04:38:58 +01:00
|
|
|
import EditServerDetails from '../components/config/edit-server-details';
|
2020-12-31 03:07:15 +01:00
|
|
|
|
|
|
|
const { Title } = Typography;
|
|
|
|
|
|
|
|
export default function ConfigServerDetails() {
|
|
|
|
return (
|
2021-01-04 08:32:47 +01:00
|
|
|
<div className="config-server-details-form">
|
2021-02-14 10:30:42 +01:00
|
|
|
<Title>
|
2021-02-13 08:55:59 +01:00
|
|
|
Server Settings
|
|
|
|
</Title>
|
|
|
|
<p className="description">
|
|
|
|
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.
|
2021-02-04 21:41:35 +01:00
|
|
|
</p>
|
2021-02-13 08:55:59 +01:00
|
|
|
<div className="form-module config-server-details-container">
|
2021-01-28 12:08:57 +01:00
|
|
|
<EditServerDetails />
|
2021-01-31 10:38:20 +01:00
|
|
|
</div>
|
2021-01-04 08:32:47 +01:00
|
|
|
</div>
|
2021-01-31 10:38:20 +01:00
|
|
|
);
|
2020-12-31 03:07:15 +01:00
|
|
|
}
|