内容 无状态功能 是定义高度可重用组件的绝妙方法。 他们不抱state ; 它们只是功能。 const Greeting = ( ) => < div> Hi there! < / div > 他们获得了props和context 。 const Greeting = ( props , context ) => < div xss=removed> Hi { props . name } ! < / div > 它们可以定义使用功能块的局部变量。 const Greeting = ( props , context )