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.

index.js 480B

123456789101112131415161718192021222324252627
  1. import React from "react";
  2. export const ClientFormContext = React.createContext({
  3. tag: '',
  4. subject: '',
  5. firstName: '',
  6. lastName: '',
  7. email: '',
  8. description: '',
  9. });
  10. export const JobFormContext = React.createContext({
  11. position: '',
  12. other: '',
  13. firstName: '',
  14. lastName: '',
  15. email: '',
  16. coverLetter: '',
  17. link:'',
  18. file: '',
  19. });
  20. export const UIContext = React.createContext({
  21. tab: true,
  22. contactRef: '',
  23. position: 0,
  24. })