Defining Props

PHOTO EMBED

Thu May 19 2022 22:31:50 GMT+0000 (Coordinated Universal Time)

Saved by @dingar321 #react.js

interface FullName {
    firstName: string;
    lastName: string;
}
function FunctionalComponent(props:FullName){
    // props.firstName
    // props.lastName
}


//Or:

// Using the same FullName interface from the last example
function FunctionalComponent({firstName, lastName}:FullName){
    // firstName
   // lastName
}
content_copyCOPY

https://www.pluralsight.com/guides/defining-props-in-react-function-component-with-typescript