Kizspy | Question: 8
(Choose 1 answer)
import React from 'react';
const Greeting = ({ name }) => { return <h1>Hello, {name}!</h1>;};
export default Greeting;
What type of component is represented by the code above?
A. Class component
B. Functional component
C. Container component
D. Higher-order component