Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
function IconCellAdapter(props) {
return (
{(adapterProps) => (
<div>
</div>
)}
)
}
function NewTextCellAdapter (props) {
return (
{(adapterProps) => (
<div>
</div>
)}
)
}
function NewIconCellAdapter(props) {
return (
{(adapterProps) => (
<div>
</div>
)}
)
}
function NewSlotHeadCellAdapter(props) {
return (
{(adapterProps) => (
<div>
{props.children}
</div>
)}
);
}