diff --git a/src/routes/index.tsx b/src/routes/index.tsx index 1beb3f1..ec4ea50 100644 --- a/src/routes/index.tsx +++ b/src/routes/index.tsx @@ -1,10 +1,10 @@ -import { DefaultTheme, NavigationContainer } from "@react-navigation/native"; -import { Box } from "@gluestack-ui/themed"; +import { DefaultTheme, NavigationContainer } from '@react-navigation/native'; +import { Box } from '@gluestack-ui/themed'; -import { AuthRoutes } from "./auth.routes"; -import { AppRoutes } from "./app.routes"; +import { AuthRoutes } from './auth.routes'; +import { AppRoutes } from './app.routes'; -import { gluestackUIConfig } from "../../config/gluestack-ui.config"; +import { gluestackUIConfig } from '../../config/gluestack-ui.config'; export function Routes() { const theme = DefaultTheme; @@ -13,9 +13,8 @@ export function Routes() { return ( - + - ) + ); } -