2022-04-28 10:47:30 -07:00
|
|
|
import React from 'react';
|
|
|
|
|
2022-04-28 11:08:46 -07:00
|
|
|
import { Layout } from 'soapbox/components/ui';
|
2022-04-28 10:47:30 -07:00
|
|
|
import {
|
|
|
|
LatestAccountsPanel,
|
|
|
|
} from 'soapbox/features/ui/util/async-components';
|
|
|
|
|
2022-11-16 05:32:32 -08:00
|
|
|
import LinkFooter from '../features/ui/components/link-footer';
|
2022-04-28 10:47:30 -07:00
|
|
|
|
2023-01-10 15:03:15 -08:00
|
|
|
interface IAdminPage {
|
2023-10-02 11:54:02 -07:00
|
|
|
children: React.ReactNode;
|
2023-01-10 15:03:15 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
const AdminPage: React.FC<IAdminPage> = ({ children }) => {
|
2022-04-28 10:47:30 -07:00
|
|
|
return (
|
2022-04-28 16:18:55 -07:00
|
|
|
<>
|
2022-04-28 11:08:46 -07:00
|
|
|
<Layout.Main>
|
|
|
|
{children}
|
|
|
|
</Layout.Main>
|
|
|
|
|
|
|
|
<Layout.Aside>
|
2023-10-07 15:14:45 -07:00
|
|
|
<LatestAccountsPanel limit={5} />
|
2022-04-28 11:08:46 -07:00
|
|
|
<LinkFooter />
|
|
|
|
</Layout.Aside>
|
2022-04-28 16:18:55 -07:00
|
|
|
</>
|
2022-04-28 10:47:30 -07:00
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default AdminPage;
|