"use client"; import type { ComponentProps } from "react"; import { Row as BaseRow } from "react-aria-components"; import { usePrefetch } from "../../use-prefetch.js"; export { type SortDescriptor, Cell, Column, Table, TableBody, TableHeader, } from "react-aria-components"; type RowProps = ComponentProps> & { prefetch?: Parameters[0]["prefetch"]; }; export const Row = ({ ref, prefetch, onHoverStart, ...props }: RowProps) => { const prefetchProps = usePrefetch({ href: props.href, prefetch, onHoverStart, ref: ref, }); return ; };