=> {
const { a , b, c, ...BProps } = props;
const AProps = { a, b, c };
return (
<>
<A {...AProps} />
<B {...BProps} />
</>
);
}
const C = ({ a, b, c, ...BProps }) => ( <> <A { a, b, c } /> <B BProps /> </> ); ?
Обсуждают сегодня