Files
bigcapital/packages/webapp/src/containers/Customers/CustomerForm/CustomerNotePanel.tsx
Ahmed Bouhuolia 54400b223f wip
2025-10-18 13:27:05 +02:00

16 lines
481 B
TypeScript

// @ts-nocheck
import React from 'react';
import classNames from 'classnames';
import { Classes } from '@blueprintjs/core';
import { FormattedMessage as T, FFormGroup, FTextArea } from '@/components';
export default function CustomerNotePanel({ errors, touched, getFieldProps }) {
return (
<div className={'tab-panel--note'}>
<FFormGroup name={'note'} label={<T id={'note'} />} inline={false}>
<FTextArea name={'note'} />
</FFormGroup>
</div>
);
}