Skip to content

Instantly share code, notes, and snippets.

View angel190884's full-sized avatar

Angel Daniel Peregrino Juarez angel190884

View GitHub Profile
@angel190884
angel190884 / init-rn.md
Created June 22, 2021 21:34 — forked from Klerith/init-rn.md
Comando para crear aplicación de React Native con TypeScript

Comando para crear un proyecto de RN con TS

npx react-native init AwesomeTSProject --template react-native-template-typescript
@angel190884
angel190884 / useForm.tsx
Created July 21, 2021 22:58 — forked from Klerith/useForm.tsx
Hook para el manejo de formularios
import { useState } from 'react';
export const useForm = <T extends Object>( initState: T ) => {
const [state, setState] = useState( initState );
const onChange = ( value: string, field: keyof T ) => {
setState({
...state,
[field]: value