diff --git a/app/soapbox/pages/empty_page.js b/app/soapbox/pages/empty_page.js
deleted file mode 100644
index 042fd6c41..000000000
--- a/app/soapbox/pages/empty_page.js
+++ /dev/null
@@ -1,24 +0,0 @@
-import React from 'react';
-import ImmutablePureComponent from 'react-immutable-pure-component';
-
-import { Layout } from '../components/ui';
-
-export default class DefaultPage extends ImmutablePureComponent {
-
- render() {
- const { children } = this.props;
-
- return (
-
-
-
-
- {children}
-
-
-
-
- );
- }
-
-}
diff --git a/app/soapbox/pages/empty_page.tsx b/app/soapbox/pages/empty_page.tsx
new file mode 100644
index 000000000..3804b0812
--- /dev/null
+++ b/app/soapbox/pages/empty_page.tsx
@@ -0,0 +1,19 @@
+import React from 'react';
+
+import { Layout } from '../components/ui';
+
+const EmptyPage: React.FC = ({ children }) => {
+ return (
+
+
+
+
+ {children}
+
+
+
+
+ );
+};
+
+export default EmptyPage;