-
-
-
- {" "}
- {" "}
- {" "}
- {" "}
-
-
-
-
- {hello} :)
-
-
- {about}
-
+
+
+
+
+ {" "}
+ {" "}
+ {" "}
+ {" "}
+
+
+
+
+ {hello} :)
+
+
+ {about}
-
- );
- }
+
+
+ );
}
export default About;
diff --git a/src/components/Experience.js b/src/components/Experience.js
index 6e40f620d..67786b6ec 100644
--- a/src/components/Experience.js
+++ b/src/components/Experience.js
@@ -1,4 +1,4 @@
-import React, { Component } from "react";
+import React from "react";
import {
VerticalTimeline,
VerticalTimelineElement,
@@ -6,91 +6,89 @@ import {
import "react-vertical-timeline-component/style.min.css";
import Badge from "react-bootstrap/Badge";
-class Experience extends Component {
- render() {
- if (this.props.resumeExperience && this.props.resumeBasicInfo) {
- var sectionName = this.props.resumeBasicInfo.section_name.experience;
- var work = this.props.resumeExperience.map(function (work, i) {
- const technologies = work.technologies;
- const mainTechnologies = work.mainTech;
+function Experience(props) {
+ if (props.resumeExperience && props.resumeBasicInfo) {
+ var sectionName = props.resumeBasicInfo.section_name.experience;
+ var work = props.resumeExperience.map(function (work, i) {
+ const technologies = work.technologies;
+ const mainTechnologies = work.mainTech;
- var mainTech = mainTechnologies.map((technology, i) => {
- return (
-
- {technology}
-
- );
- });
- var tech = technologies.map((technology, i) => {
- return (
-
- {technology}
-
- );
- });
+ var mainTech = mainTechnologies.map((technology, i) => {
return (
+
+ {technology}
+
+ );
+ });
+ var tech = technologies.map((technology, i) => {
+ return (
+
+ {technology}
+
+ );
+ });
+ return (
+
}
+ key={i}
+ >
+
+ {mainTech}
+
+
+
+ {work.title}
+
+
+ {work.company}
+
+ {tech}
+
+ );
+ });
+ }
+
+ return (
+
+
+
+
+
+ {sectionName}
+
+
+
+
+
+
+ {work}
}
- key={i}
- >
-
- {mainTech}
-
-
-
- {work.title}
-
-
- {work.company}
-
- {tech}
-
- );
- });
- }
-
- return (
-
-
-
-
-
- {sectionName}
-
-
-
-
-
-
- {work}
-
- }
- />
-
-
-
- );
- }
+ icon={
+
+ }
+ />
+
+
+
+ );
}
export default Experience;
diff --git a/src/components/Footer.js b/src/components/Footer.js
index 00b28970f..c2b36dd68 100644
--- a/src/components/Footer.js
+++ b/src/components/Footer.js
@@ -1,38 +1,34 @@
-import React, { Component } from "react";
+import React from "react";
-class Footer extends Component {
- render() {
- if (this.props.sharedBasicInfo) {
- var networks = this.props.sharedBasicInfo.social.map(function (network) {
- return (
-
-
-
-
-
- );
- });
- }
+function Footer(props) {
+ if (props.sharedBasicInfo) {
+ var networks = props.sharedBasicInfo.social.map(function (network) {
+ return (
+
+
+
+
+
+ );
+ });
+ }
- return (
-