JackGraymer / cv-project-TOP

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Project: CV Application

CV Maker with ReactJS


This project aims to use the basics concepts of react to create a form that will display a CV like result. Using react function components and hooks only.

  1. Create a new project using npx create-react-app cv-project. If you need a reminder on how it works, check out the previous lessons. Don’t forget to setup a GitHub repository for your project, to push your progress.
  2. Remove the boilerplate code created by create-react-app.
  3. You should use class components for this project. You’re going to find a lot of code written using class components and this practical experience will help you understand it when encountered. You’ll also revisit this project in a later lesson to replace the class components with functional ones.
  4. Think about how to structure your application into components. Your application should include:
    1. A section to add general information like name, email, phone number.
    2. A section to add your educational experience (school name, title of study, date of study)
    3. A section to add practical experience (company name, position title, main tasks of your jobs, date from and until when you worked for that company)
  5. Be sure to include an edit and submit button for each section or for the whole CV, your preference. The submit button should submit your form and display the value of your input fields in HTML elements. The edit button should add back (display) the input fields, with the previously displayed information as values. In those input fields, you should be able to edit and resubmit the content. You’re going to make heavy use of state and props, so make sure you understood those concepts.
  6. Create a components folder in your src directory and add your components.
  7. Include a styles folder in your src directory for your CSS files. You’ll need to import these in the component files to use them.
  8. Don’t forget to push your solution to GitHub. You should be proud of your work and show it off to the world!

Tip: If you’re confused on how to deploy using GitHub Pages, take a look at this article

About


Languages

Language:JavaScript 67.3%Language:CSS 22.2%Language:HTML 10.5%