import Background from 'Elements/layout/Background'; import { Tabs, Wrapper } from 'Elements/layout/Tabs'; import Leasing from './Leasing'; import LeasingObject from './LeasingObject'; import Payments from './Payments'; const formTabs = [Leasing, Payments, LeasingObject]; function Form() { return ( {formTabs.map(({ id, title, Component }) => ( ))} ); } export default Form;