import React from 'react';
import {RootStack} from '@navigation/RootStack';
import {
  defaultNavOptions,
  getCloseRightScreenOptions,
} from '@navigation/options';
import {Screens} from '@shared/constants';

import ReportBug from '../screens/ReportBug';

export const BugReportScreens = (
  <RootStack.Group key="bugReport" screenOptions={defaultNavOptions}>
    <RootStack.Screen
      name={Screens.REPORT_BUG}
      component={ReportBug}
      options={getCloseRightScreenOptions}
    />
  </RootStack.Group>
);
