DeFiCh/wallet

View on GitHub
mobile-app/app/screens/AppNavigator/constants/DefaultRoutes.ts

Summary

Maintainability
A
0 mins
Test Coverage
export const bottomTabDefaultRoutes = [
  {
    name: "Portfolio",
    state: {
      routes: [{ name: "PortfolioScreen" }],
    },
  },
  {
    name: "DEX",
    state: {
      routes: [{ name: "DexScreen" }],
    },
  },
  {
    name: "Loans",
    state: {
      routes: [{ name: "LoansScreen" }],
    },
  },
  {
    name: "Auctions",
    state: {
      routes: [{ name: "AuctionScreen" }],
    },
  },
];