Projekt

Obecné

Profil

Stáhnout (370 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
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
(2-2/2)