How can react pure function components be redux connect?

by the way, how the latest api hooks is used in conjunction with redux

Nov.25,2021

actually redux has nothing to do with hooks .

SFC component:

import SFC from '...';
export defalut connect(state => state)(SFC)
Menu