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