import React from 'react';
import { Dialog as RACDialog, type DialogProps } from 'react-aria-components';

export function Dialog(props: DialogProps) {
  return <RACDialog {...props} />;
}
