React
Använda React with Flow
Sök…
Introduktion
Hur man använder flödeskontrollen för att kontrollera typer i React-komponenter.
Anmärkningar
Använd Flow för att kontrollera rekvisita typer av statslösa funktionella komponenter
type Props = {
posts: Array<Article>,
dispatch: Function,
children: ReactElement
}
const AppContainer =
({ posts, dispatch, children }: Props) => (
<div className="main-app">
<Header {...{ posts, dispatch }} />
{children}
</div>
)
Använd Flow för att kontrollera prop-typer
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
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow