16 lines
348 B
TypeScript
16 lines
348 B
TypeScript
import React from 'react';
|
|
import { Typography } from 'antd';
|
|
import EditSocialLinks from './config/general/components/EditSocialLinks';
|
|
|
|
const { Title } = Typography;
|
|
|
|
export default function ConfigSocialThings() {
|
|
return (
|
|
<div className="config-social-items">
|
|
<Title>Social Items</Title>
|
|
|
|
<EditSocialLinks />
|
|
</div>
|
|
);
|
|
}
|