選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

22 行
405 B

  1. "use client";
  2. import React from "react";
  3. import MailField from "./MailField";
  4. export interface Props {
  5. content?: string,
  6. onChange?: (richText: string) => void,
  7. error?: boolean,
  8. }
  9. const TransferListWrapper: React.FC<Props> = ({
  10. content,
  11. onChange,
  12. error
  13. }) => {
  14. return <MailField content={content} onChange={onChange} error={error}/>;
  15. };
  16. export default TransferListWrapper;