|
|
@@ -1,7 +1,8 @@ |
|
|
|
import styles from './SlillInformation.module.scss'; |
|
|
|
|
|
|
|
import { IonContent, IonPage } from "@ionic/react"; |
|
|
|
import StepsHeader from "../../components/stepsHeader/StepsHeader"; |
|
|
|
import Skills from './Skills'; |
|
|
|
import reactIcon from '../../assets/images/React.png'; |
|
|
|
|
|
|
|
const SkillInformationStep: React.FC = () => { |
|
|
|
return ( |
|
|
@@ -9,6 +10,9 @@ const SkillInformationStep: React.FC = () => { |
|
|
|
<StepsHeader |
|
|
|
stepNumber={1} |
|
|
|
roundName="Skill Information" /> |
|
|
|
<IonContent> |
|
|
|
<Skills name='React JS/TS' icon={reactIcon} /> |
|
|
|
</IonContent> |
|
|
|
</IonPage> |
|
|
|
) |
|
|
|
} |
|
|
|