2023-01-16 08:11:44 +01:00
|
|
|
import React, { ReactElement } from 'react';
|
2021-01-27 10:46:08 +01:00
|
|
|
import { Typography } from 'antd';
|
2023-01-10 05:57:29 +01:00
|
|
|
import EditSocialLinks from '../../components/admin/config/general/EditSocialLinks';
|
2021-01-27 10:46:08 +01:00
|
|
|
|
2023-01-16 08:11:44 +01:00
|
|
|
import { AdminLayout } from '../../components/layouts/AdminLayout';
|
|
|
|
|
2021-01-27 10:46:08 +01:00
|
|
|
const { Title } = Typography;
|
|
|
|
|
|
|
|
export default function ConfigSocialThings() {
|
|
|
|
return (
|
|
|
|
<div className="config-social-items">
|
2021-02-14 10:30:42 +01:00
|
|
|
<Title>Social Items</Title>
|
2021-01-27 10:46:08 +01:00
|
|
|
|
|
|
|
<EditSocialLinks />
|
|
|
|
</div>
|
2021-01-31 10:38:20 +01:00
|
|
|
);
|
2021-01-27 10:46:08 +01:00
|
|
|
}
|
2023-01-16 08:11:44 +01:00
|
|
|
|
|
|
|
ConfigSocialThings.getLayout = function getLayout(page: ReactElement) {
|
|
|
|
return <AdminLayout page={page} />;
|
|
|
|
};
|