|
- "use client";
-
- import React from "react";
- import MailField from "./MailField";
-
- export interface Props {
- content?: string,
- onChange?: (richText: string) => void,
- error?: boolean,
- }
-
- const TransferListWrapper: React.FC<Props> = ({
- content,
- onChange,
- error
- }) => {
-
- return <MailField content={content} onChange={onChange} error={error}/>;
- };
-
- export default TransferListWrapper;
|