import React from 'react'; import { Wizard } from './Wizard'; import { Step1 } from './StepOneForm'; import { Step2 } from './StepTwoForm'; import { Step3 } from './StepThreeForm'; import { Step4 } from './StepFourForm'; /* eslint-disable react/jsx-key */ export const SyncWizard: React.FunctionComponent<{ onFinish: (data: any) => void; }> = ({ onFinish }) => { return ( {register => { return [ , , , ]; }} ); };