tsrntemp 1.1.2 → 1.1.5

Sign up to get free protection for your applications and to get access to all the features.
@@ -1 +0,0 @@
1
- 2.7.6
@@ -1,4 +0,0 @@
1
- module.exports = {
2
- preset: 'react-native',
3
- moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node']
4
- };
@@ -1,11 +0,0 @@
1
- import { RouteConfig } from "types/RoteConfig"
2
- import BottomTab from "route/BottomTab"
3
-
4
- const RouteArr: Array<RouteConfig> = [
5
- {
6
- name: 'BottomTab',
7
- component: BottomTab,
8
- options: { headerShown: false }
9
- }
10
- ]
11
- export default RouteArr
@@ -1,9 +0,0 @@
1
- import React from "react"
2
- import { NativeStackNavigationOptions } from '@react-navigation/native-stack';
3
- import { StackParamList } from "./RouteParamList";
4
-
5
- export type RouteConfig = {
6
- name: keyof StackParamList,
7
- component: React.ComponentType
8
- options?: NativeStackNavigationOptions
9
- }