import React from 'react'; import { type ColumnProps, Column as RACColumn } from 'react-aria-components'; export function Column(props: ColumnProps) { return ( {({ allowsSorting, sortDirection }) => ( <> {props.children} {allowsSorting && ( )} )} ); }