|
1
|
import type {NameProps} from '@givewp/forms/propTypes'; |
|
2
|
|
|
3
|
export default function Name({ |
|
4
|
nodeComponents: {honorific: Honorific, firstName: FirstName, lastName: LastName}, |
|
5
|
}: NameProps) { |
|
6
|
return ( |
|
7
|
<> |
|
8
|
{Honorific && <Honorific />} |
|
9
|
<FirstName /> |
|
10
|
<LastName /> |
|
11
|
</> |
|
12
|
); |
|
13
|
} |
|
14
|
|