constants.ts 250 B

123456789101112
  1. import { Routes } from './types';
  2. export const routes: Routes[] = [
  3. { key: 'all', title: 'All' },
  4. { key: 'unread', title: 'Unread' },
  5. { key: 'archived', title: 'Archived' },
  6. {
  7. key: 'blocked',
  8. title: 'Blocked',
  9. icon: 'ban'
  10. }
  11. ];