tsrntemp 1.1.3 → 1.1.5

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,16 +0,0 @@
1
- # http://editorconfig.org
2
- root = true
3
-
4
- [*]
5
- indent_style = space
6
- indent_size = 2
7
- end_of_line = lf
8
- charset = utf-8
9
- trim_trailing_whitespace = true
10
- insert_final_newline = true
11
-
12
- [*.md]
13
- trim_trailing_whitespace = false
14
-
15
- [Makefile]
16
- indent_style = tab
@@ -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
- }