31 lines
721 B
TypeScript
31 lines
721 B
TypeScript
import React from 'react';
|
|
|
|
import { Column, Layout } from 'soapbox/components/ui';
|
|
import LinkFooter from 'soapbox/features/ui/components/link-footer';
|
|
import { MyGroupsPanel, NewGroupPanel } from 'soapbox/features/ui/util/async-components';
|
|
|
|
interface IGroupsLayout {
|
|
children: React.ReactNode;
|
|
}
|
|
|
|
/** Layout to display groups. */
|
|
const GroupsLayout: React.FC<IGroupsLayout> = ({ children }) => (
|
|
<>
|
|
<Layout.Main>
|
|
<Column withHeader={false}>
|
|
<div className='space-y-4'>
|
|
{children}
|
|
</div>
|
|
</Column>
|
|
</Layout.Main>
|
|
|
|
<Layout.Aside>
|
|
<NewGroupPanel />
|
|
<MyGroupsPanel />
|
|
|
|
<LinkFooter />
|
|
</Layout.Aside>
|
|
</>
|
|
);
|
|
|
|
export { GroupsLayout as default };
|