import React from 'react'; import { FastField, Form, ErrorMessage } from 'formik'; import { Button, Intent, FormGroup, InputGroup, MenuItem, Classes, } from '@blueprintjs/core'; import classNames from 'classnames'; import { TimezonePicker } from '@blueprintjs/timezone'; import { FormattedMessage as T } from 'components'; import { getCountries } from 'common/countries'; import { Col, Row, ListSelect } from 'components'; import { inputIntent } from 'utils'; import { getFiscalYear } from 'common/fiscalYearOptions'; import { getLanguages } from 'common/languagesOptions'; import { getAllCurrenciesOptions } from 'common/currencies'; /** * Setup organization form. */ export default function SetupOrganizationForm({ isSubmitting, values }) { const FiscalYear = getFiscalYear(); const Languages = getLanguages(); const currencies = getAllCurrenciesOptions(); const countries = getCountries(); return (
); }