What is the correct statement(s) for components written as functions?
functions
They provide access to the component lifecycle.
They are less verbose than its equivalent class MyComponent extends React.Component{}.
class MyComponent extends React.Component{}
They do not allow access to this in their code.
this
They allow you to manage the state of the component(since React 16.8)