2.0.0 • Published 9 years ago

tbg_props_to_state v2.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

Props to State

How to use

Comp   = React.createClass

  getInitialState: -> 
    TransferToState(@props, 
      current_user: "options.current_user?",
      verification_status: "options.verification_status"
    )

If you also wish to set default state values

Comp   = React.createClass

  getInitialState: -> 
    TransferToState(@props,
      {
        current_user: "options.current_user?",
        verification_status: "options.verification_status"
      },
      {
        display: true
      }
    )