mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
15 lines
317 B
JavaScript
15 lines
317 B
JavaScript
import React from 'react';
|
|
import { Form } from 'formik';
|
|
|
|
import CurrencyFormFields from './CurrencyFormFields';
|
|
import CurrencyFormFooter from './CurrencyFormFooter';
|
|
|
|
export default function CurrencyFormContent() {
|
|
return (
|
|
<Form>
|
|
<CurrencyFormFields />
|
|
<CurrencyFormFooter />
|
|
</Form>
|
|
);
|
|
}
|