const Form = ({ children, ...rest }) => <form {...rest}>{children}</form>;
const Div = ({ children, ...rest }) => <div {...rest}>{children}</div>;
const Card = ({ editable }) => {
const Container = editable ? Form : Div;
return <Container>{"Тут ваш контент"}</Container>;
};
ReactDOM.render(<Card />, document.getElementById("root"));
ReactDOM.render(<Card editable />, document.getElementById("root"));