index.tsx 441 B

12345678910111213141516
  1. /**
  2. * The react-aria components aren't marked as "use client" so it's a bit
  3. * obnoxious to use them; this file just adds a client boundary and re-exports
  4. * the react-aria components to avoid that problem.
  5. */
  6. "use client";
  7. export {
  8. Cell as UnstyledCell,
  9. Column as UnstyledColumn,
  10. Row as UnstyledRow,
  11. Table as UnstyledTable,
  12. TableBody as UnstyledTableBody,
  13. TableHeader as UnstyledTableHeader,
  14. } from "react-aria-components";