eri you can concatenate two strings using the +
operator. Now you need to add a space
between them, so you need another +
.
props.firstName + ' ' + props.lastName;
Or you could use a template string. This way the space is inserted a bit more naturally.
`${props.firstName} ${props.lastName}`