Skip to content

Instantly share code, notes, and snippets.

@brunolemos
brunolemos / ExampleComponent.tsx
Last active May 27, 2020 14:00
Redux + TypeScript - Strongly Typed
import React from 'react'
import { Button, Text, View } from 'react-native'
import { useDispatch } from 'react-redux'
import { useReduxState } from '../hooks/use-redux-state'
import * as actions from '../redux/actions'
import * as selectors from '../redux/selectors'
export function LoginScreen() {
const dispatch = useDispatch()