mirror of
https://github.com/owncast/owncast.git
synced 2024-12-22 01:04:45 +03:00
28 lines
639 B
TypeScript
28 lines
639 B
TypeScript
import React from 'react';
|
|
import { Tabs } from 'antd';
|
|
|
|
import GeneralConfig from './components/GeneralConfig';
|
|
import AppearanceConfig from './components/AppearanceConfig';
|
|
|
|
export default function PublicFacingDetails() {
|
|
return (
|
|
<div className="config-public-details-page">
|
|
<Tabs
|
|
defaultActiveKey="1"
|
|
centered
|
|
items={[
|
|
{
|
|
label: `General`,
|
|
key: '1',
|
|
children: <GeneralConfig />,
|
|
},
|
|
{
|
|
label: `Appearance`,
|
|
key: '2',
|
|
children: <AppearanceConfig />,
|
|
},
|
|
]}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|