aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers/settings/ReleaseNotesScreen.tsx
blob: 482364817ab8772daabfb460777bf8a34042cca5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { Component, type ReactElement } from 'react';

import ReleaseNotes from '../../components/settings/releaseNotes/ReleaseNotesDashboard';
import ErrorBoundary from '../../components/util/ErrorBoundary';

class ReleaseNotesScreen extends Component {
  render(): ReactElement {
    return (
      <ErrorBoundary>
        <ReleaseNotes />
      </ErrorBoundary>
    );
  }
}

export default ReleaseNotesScreen;