You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
543 B
19 lines
543 B
import React from 'react'; |
|
import { Typography } from 'antd'; |
|
import EditSocialLinks from './components/config/edit-social-links'; |
|
import EditInstanceTags from './components/config/edit-tags'; |
|
import EditDirectoryDetails from './components/config/edit-directory'; |
|
|
|
const { Title } = Typography; |
|
|
|
export default function ConfigSocialThings() { |
|
return ( |
|
<div className="config-social-items"> |
|
<Title level={2}>Social Items</Title> |
|
|
|
<EditDirectoryDetails /> |
|
<EditSocialLinks /> |
|
<EditInstanceTags /> |
|
</div> |
|
); |
|
}
|
|
|