Steal this simple code override to align CMS content properly.
export function withStretchSelf(Component): ComponentType {
return forwardRef(({ style = {}, ...rest }, ref) => {
return (
<Component
ref={ref}
{...{
style: { ...style, height: "auto", alignSelf: "stretch" },
...rest,
}}
/>
)
})
}
Steal this simple code override to align CMS content properly.
export function withStretchSelf(Component): ComponentType {
return forwardRef(({ style = {}, ...rest }, ref) => {
return (
<Component
ref={ref}
{...{
style: { ...style, height: "auto", alignSelf: "stretch" },
...rest,
}}
/>
)
})
}