Last active
October 29, 2017 12:58
-
-
Save rjesh-git/bb743fdfa694c18eed51c0d2926fe1c1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export default class Quotes extends React.Component<IQuoteProps, IQuoteState> { | |
constructor(props) { | |
super(props); | |
this.state = { | |
error: null, | |
censusItems: [] | |
}; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment