mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 21:00:31 +00:00
16 lines
332 B
TypeScript
16 lines
332 B
TypeScript
// @ts-nocheck
|
|
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>
|
|
);
|
|
}
|