Your first component
import styled from "react-elevated-emotion";
type SectionComponentProps = {
customTitle?: string;
};
const SectionComponent = styled.div<SectionComponentProps>({
ignore: ["customTitle"],
testid: "my-component",
defaultProps({ customTitle, children }) {
return {
children: props.customTitle
? (<>
<h1>{customTitle}</h1>
{children}
<>)
: children
}
}
})({
label: "my-comp",
padding: "10px 15px"
});Last updated