-
@@ -55,11 +135,18 @@ const SkillInformationStep: React.FC = () => {
Front-end:
-
-
-
-
-
+ {
+ frontEndSkills.map((skill, index) => {
+ return (
+
+ );
+ })
+ }
@@ -69,9 +156,18 @@ const SkillInformationStep: React.FC = () => {
Back-end:
-
-
-
+ {
+ backendSkills.map((skill, index) => {
+ return (
+
+ );
+ })
+ }
@@ -79,13 +175,22 @@ const SkillInformationStep: React.FC = () => {
Database:
-
-
-
-
+ {
+ database.map((skill, index) => {
+ return (
+
+ );
+ })
+ }
+
@@ -93,8 +198,18 @@ const SkillInformationStep: React.FC = () => {
Beneficial:
-
-
+ {
+ beneficial.map((skill, index) => {
+ return (
+
+ );
+ })
+ }