initial commit, completed 40% of first milestone

This commit is contained in:
Amruth Pillai
2020-03-25 02:52:24 +05:30
parent dfeb67cda9
commit 25a6740c24
36 changed files with 55170 additions and 154 deletions

View File

@ -0,0 +1,18 @@
import React from 'react';
import TextArea from '../../../shared/TextArea';
const ObjectiveTab = ({ data, onChange }) => {
return (
<div>
<TextArea
rows="15"
label="Objective"
placeholder="Looking for a challenging role in a reputable organization to utilize my technical, database, and management skills for the growth of the organization as well as to enhance my knowledge about new and emerging trends in the IT sector."
value={data.objective.body}
onChange={v => onChange('data.objective.body', v)}
/>
</div>
);
};
export default ObjectiveTab;