खोज…


परिचय

रिएक्ट घटकों में प्रकारों की जांच करने के लिए फ्लो टाइप चेकर का उपयोग कैसे करें।

टिप्पणियों

प्रवाह | प्रतिक्रिया

प्रोप के प्रकार के स्टेटलेस कार्यात्मक घटकों की जांच करने के लिए फ्लो का उपयोग करना

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