aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers/settings/ReleaseNotesScreen.tsx
blob: 3a7b8d0e95caf5c6b2f0cc6669496c5027cac709 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import ReleaseNotes from '../../components/settings/releaseNotes/ReleaseNotesDashboard';
import ErrorBoundary from '../../components/util/ErrorBoundary';

const ReleaseNotesScreen = () => {
  return (
    <ErrorBoundary>
      <ReleaseNotes />
    </ErrorBoundary>
  );
};

export default ReleaseNotesScreen;