React Class to Functional Component Converter Convert the React class component at to a functional component using React hooks. Conversion Rules State - → individual hooks - → setter function - → functional update form - Mutable objects (Set/Map) must be cloned on update: Lifecycle → useEffect | Class | Functional | |-------|-----------| | | | | | or | | | | | mount + unmount | single with cleanup return | Other Mappings - → - → - Bound methods / arrow class methods → local function inside functional component - Non-reactive instance variables ( ) → - (reselect) → with explicit dependency arr…