mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 21:30:31 +00:00
16 lines
298 B
JavaScript
16 lines
298 B
JavaScript
import React from 'react';
|
|
import { Form } from 'formik';
|
|
|
|
import BillingPlansForm from 'containers/Subscriptions/BillingPlansForm';
|
|
|
|
/**
|
|
* Subscription step of wizard setup.
|
|
*/
|
|
export default function SetupSubscriptionForm() {
|
|
return (
|
|
<Form>
|
|
<BillingPlansForm />
|
|
</Form>
|
|
);
|
|
}
|