2021-01-28 12:08:57 +01:00
|
|
|
import React from 'react';
|
|
|
|
import { Typography } from 'antd';
|
|
|
|
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-04 21:41:35 +01:00
|
|
|
<Title level={2}>Server Settings</Title>
|
|
|
|
<p>
|
|
|
|
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.
|
|
|
|
</p>
|
2021-01-28 12:08:57 +01:00
|
|
|
<div className="config-server-details-container">
|
|
|
|
<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
|
|
|
}
|