вот мой код function Label({title}){ return <h1>{title}</h1> } function useLabel({title}){ return <h1> {title}</h1> } function Diff(){ return <div> <Label title=’this is component’/> {useLabel({title:’this is custom hook’})} </div> }…

IT Шеф