Buscar..


Introducción

Cómo utilizar el comprobador de tipo de flujo para verificar los tipos en los componentes React.

Observaciones

Flujo | Reaccionar

Uso de Flow para verificar tipos de accesorios de componentes funcionales sin estado

type Props = {
  posts: Array<Article>,
  dispatch: Function,
  children: ReactElement
}

const AppContainer =
  ({ posts, dispatch, children }: Props) => (
    <div className="main-app">
      <Header {...{ posts, dispatch }} />
      {children}
    </div>
  )

Usando Flow para verificar los tipos de accesorios

import React, { Component } from 'react';

type Props = {
  posts: Array<Article>,
  dispatch: Function,
  children: ReactElement
}

class Posts extends Component {
  props: Props;

  render () {
    // rest of the code goes here
  }
}


Modified text is an extract of the original Stack Overflow Documentation
Licenciado bajo CC BY-SA 3.0
No afiliado a Stack Overflow