mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 20:30:33 +00:00
39 lines
991 B
TypeScript
39 lines
991 B
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
import intl from 'react-intl-universal';
|
|
import { Tabs, Tab } from '@blueprintjs/core';
|
|
|
|
import CustomerAddressTabs from './CustomerAddressTabs';
|
|
import CustomerAttachmentTabs from './CustomerAttachmentTabs';
|
|
import CustomerFinancialPanel from './CustomerFinancialPanel';
|
|
import CustomerNotePanel from './CustomerNotePanel';
|
|
|
|
export default function CustomersTabs() {
|
|
return (
|
|
<div>
|
|
<Tabs
|
|
animate={true}
|
|
id={'customer-tabs'}
|
|
large={true}
|
|
defaultSelectedTabId="financial"
|
|
>
|
|
<Tab
|
|
id={'financial'}
|
|
title={intl.get('financial_details')}
|
|
panel={<CustomerFinancialPanel />}
|
|
/>
|
|
<Tab
|
|
id={'address'}
|
|
title={intl.get('address')}
|
|
panel={<CustomerAddressTabs />}
|
|
/>
|
|
<Tab
|
|
id="notes"
|
|
title={intl.get('notes')}
|
|
panel={<CustomerNotePanel />}
|
|
/>
|
|
</Tabs>
|
|
</div>
|
|
);
|
|
}
|