import React from 'react';

import './employee-termination-form.css';

/* eslint-disable-next-line */
export interface EmployeeTerminationFormProps {}

export function EmployeeTerminationForm(
  props: EmployeeTerminationFormProps
) {
  return (
    <div>
      <h1>
        Welcome to employee-termination-form!
      </h1>
    </div>
  );
}

export default EmployeeTerminationForm;
