soapbox/src/pages/admin-page.tsx

30 wiersze
571 B
TypeScript
Czysty Zwykły widok Historia

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