React
흐름에 대한 반응 사용하기
수색…
소개
흐름 유형 검사기 를 사용하여 React 구성 요소의 유형을 확인하는 방법
비고
흐름을 사용하여 상태 비 저장 기능 요소의 유형을 확인
type Props = {
posts: Array<Article>,
dispatch: Function,
children: ReactElement
}
const AppContainer =
({ posts, dispatch, children }: Props) => (
<div className="main-app">
<Header {...{ posts, dispatch }} />
{children}
</div>
)
흐름을 사용하여 소품 유형 확인
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
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow