-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.tsx
More file actions
27 lines (18 loc) · 677 Bytes
/
App.tsx
File metadata and controls
27 lines (18 loc) · 677 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//this APi for get one user deatils
import React, { useEffect, useState } from "react";
import { Text, View } from "react-native";
import AppApi from "./APIDeatils/Api46/Apicode";
import AppApiList from "./APIDeatils/Api47List/ApicodeList"
import DemoApiList from "./APIDeatils/Demo/demoApiCode";
import DemoFlatApiList from "./APIDeatils/DemoWithFlatList/demoFlatApiCode";
export default function App():React.JSX.Element{
return(<View>
<Text style={{fontSize:30}}>Hello Flat List</Text>
{/* Show Only One record */}
{/* <AppApi/> */}
{/* Show List of records */}
{/* <AppApiList/> */}
{/* <DemoApiList/> */}
<DemoFlatApiList/>
</View>);
}