mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 05:40:31 +00:00
21 lines
489 B
JavaScript
21 lines
489 B
JavaScript
import React from 'react';
|
|
|
|
import 'style/pages/Subscription/BillingPlans.scss';
|
|
|
|
import BillingPlansInput from './BillingPlansInput';
|
|
import BillingPeriodsInput from './BillingPeriodsInput';
|
|
// import BillingPaymentMethod from './BillingPaymentMethod';
|
|
|
|
/**
|
|
* Billing plans form.
|
|
*/
|
|
export default function BillingPlansForm() {
|
|
return (
|
|
<div class="billing-plans">
|
|
<BillingPlansInput />
|
|
<BillingPeriodsInput />
|
|
{/* <BillingPaymentMethod /> */}
|
|
</div>
|
|
);
|
|
}
|