You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516171819202122
  1. export let dataForm = {
  2. recruitment_id: 0,
  3. company_id: 0,
  4. status: 1,
  5. }
  6. export let otherDataForm = {
  7. full_name: null
  8. }
  9. export const reset = () => {
  10. dataForm = {
  11. recruitment_id: 0,
  12. company_id: 0,
  13. status: 1,
  14. };
  15. otherDataForm = {
  16. full_name: null
  17. }
  18. return { dataForm, otherDataForm }
  19. }