Advertisement
Guest User

Untitled

a guest
Jul 15th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. class Example {
  2. readonly initialState: any
  3. constructor(){
  4. this.someMethod()
  5. }
  6. private someMethod(){
  7. this.setState({
  8. initialState: 'someState' // Cannot assign to 'initialState' because it is a read-only property
  9. })
  10. }
  11.  
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement