index.tsx 294 B

123456789
  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 { Button as UnstyledButton } from "react-aria-components";