I am trying to create a wrapper component for ColumnsDirective and ColumnDirective. But when I do it like this
const CustomColumns = ({ children }) => {
return (<ColumnsDirective>{children}</ColumnsDirective>);
};
It does not work, but if I directly use ColumnsDirective it renders correctly. So how would I make Wrapper components for Both of these Components?