- implement lists

- implement generic sections
- implement list actions
- implement error handlers
This commit is contained in:
Amruth Pillai
2020-07-08 05:01:50 +05:30
parent d7e86ddf29
commit bee6a40e9f
38 changed files with 762 additions and 177 deletions
+3 -2
View File
@@ -1,6 +1,7 @@
import React, { useContext } from "react";
import { MdAdd } from "react-icons/md";
import ModalContext from "../../contexts/ModalContext";
import { handleKeyDown } from "../../utils";
import styles from "./CreateResume.module.css";
const CreateResume = () => {
@@ -18,12 +19,12 @@ const CreateResume = () => {
role="button"
className={styles.page}
onClick={handleClick}
onKeyDown={() => {}}
onKeyDown={(e) => handleKeyDown(e, handleClick)}
>
<MdAdd size="48" />
</div>
<div className={styles.meta}>
<p>Create New Resume</p>
<p>Create Resume</p>
</div>
</div>
);