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