a123967645
* move components folder and fix build errors Fixes https://github.com/owncast/owncast/issues/689 * Prettified Code! Co-authored-by: nebunez <nebunez@users.noreply.github.com>
16 lines
353 B
TypeScript
16 lines
353 B
TypeScript
import React from 'react';
|
|
import { Typography } from 'antd';
|
|
import EditSocialLinks from '../components/config/edit-social-links';
|
|
|
|
const { Title } = Typography;
|
|
|
|
export default function ConfigSocialThings() {
|
|
return (
|
|
<div className="config-social-items">
|
|
<Title level={2}>Social Items</Title>
|
|
|
|
<EditSocialLinks />
|
|
</div>
|
|
);
|
|
}
|