Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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. });