React
Używanie React z Flow
Szukaj…
Wprowadzenie
Jak używać sprawdzania typu Flow do sprawdzania typów w komponentach React.
Uwagi
Używanie Flow do sprawdzania typów prop bezpaństwowych komponentów funkcjonalnych
type Props = {
posts: Array<Article>,
dispatch: Function,
children: ReactElement
}
const AppContainer =
({ posts, dispatch, children }: Props) => (
<div className="main-app">
<Header {...{ posts, dispatch }} />
{children}
</div>
)
Używanie Flow do sprawdzania typów podpór
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
Licencjonowany na podstawie CC BY-SA 3.0
Nie związany z Stack Overflow