import React, { useState } from 'react'; const EmployeeFormNew: React.FC = () => { const [currentStep, setCurrentStep] = useState(1); return (
Welcome to the Auditly Employee Assessment
Let's learn about your role, contribution and help us get a better understand of how you work best.
Your Role & Output
Tell us about your current role and what you work on
Your Name
*
What is your role at the company?
*
What department do you work in?
*
); }; export default EmployeeFormNew;