aswi2023one-team-to-rule-them-all-gitlab/src/components/listView/ListView.tsx @ 9c55d3bb
1 | 9c55d3bb | Schwobik | import { useEffect, useState } from "react" |
---|---|---|---|
2 | import { Text } from "native-base" |
||
3 | import { useSelector } from "react-redux" |
||
4 | import { RootState } from "../../stores/store" |
||
5 | |||
6 | const ListView = () => { |
||
7 | const items = useSelector((state: RootState) => state.listView.data) |
||
8 | |||
9 | return ( |
||
10 | <>
|
||
11 | <Text>ListView</Text> |
||
12 | </>
|
||
13 | )
|
||
14 | }
|
||
15 | |||
16 | export default ListView |