aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers/settings/SupportScreen.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/containers/settings/SupportScreen.tsx')
-rw-r--r--src/containers/settings/SupportScreen.tsx16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/containers/settings/SupportScreen.tsx b/src/containers/settings/SupportScreen.tsx
new file mode 100644
index 000000000..c2f25ad8c
--- /dev/null
+++ b/src/containers/settings/SupportScreen.tsx
@@ -0,0 +1,16 @@
1import { Component, ReactElement } from 'react';
2
3import SupportFerdium from '../../components/settings/supportFerdium/SupportFerdiumDashboard';
4import ErrorBoundary from '../../components/util/ErrorBoundary';
5
6class SupportScreen extends Component {
7 render(): ReactElement {
8 return (
9 <ErrorBoundary>
10 <SupportFerdium />
11 </ErrorBoundary>
12 );
13 }
14}
15
16export default SupportScreen;