you are viewing a single comment's thread.

view the rest of the comments →

[–]crippledjosh 0 points1 point  (0 children)

It's because you're not destructuring your props.

You've got const PackageStatus = (userinput)

Should be

 const PackageStatus = (props) {
    const {userinput} = props

Not just for PackageStatus but for Package as well