diff --git a/app/soapbox/pages/admin_page.js b/app/soapbox/pages/admin_page.js deleted file mode 100644 index 0b9362ca95..0000000000 Binary files a/app/soapbox/pages/admin_page.js and /dev/null differ diff --git a/app/soapbox/pages/admin_page.tsx b/app/soapbox/pages/admin_page.tsx new file mode 100644 index 0000000000..5d4d3c879b --- /dev/null +++ b/app/soapbox/pages/admin_page.tsx @@ -0,0 +1,45 @@ +import React from 'react'; + +import BundleContainer from 'soapbox/features/ui/containers/bundle_container'; +import { + AdminNav, + LatestAccountsPanel, +} from 'soapbox/features/ui/util/async-components'; + +import LinkFooter from '../features/ui/components/link_footer'; + +const AdminPage: React.FC = ({ children }) => { + return ( +
+
+
+ +
+
+ + {Component => } + +
+
+ +
+
+ {children} +
+
+ +
+
+ + {Component => } + + +
+
+
+
+
+ ); +}; + +export default AdminPage;