From bf101ad76b99caf4727bba785dc3852fdf1f1e47 Mon Sep 17 00:00:00 2001 From: Bobby Galli Date: Sun, 9 Jan 2022 21:13:01 -0500 Subject: [PATCH] Fix typo "Edution" should be "Education" --- components/{EdutionCard.jsx => EducationCard.jsx} | 4 ++-- containers/Education.jsx | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) rename components/{EdutionCard.jsx => EducationCard.jsx} (91%) diff --git a/components/EdutionCard.jsx b/components/EducationCard.jsx similarity index 91% rename from components/EdutionCard.jsx rename to components/EducationCard.jsx index 1a23de0869b6c..56c0ab8a03926 100644 --- a/components/EdutionCard.jsx +++ b/components/EducationCard.jsx @@ -3,7 +3,7 @@ import { Card, CardBody, Badge } from "reactstrap"; import { Fade } from "react-reveal"; -const EdutionCard = ({ education }) => { +const EducationCard = ({ education }) => { return ( @@ -33,4 +33,4 @@ const EdutionCard = ({ education }) => { ); }; -export default EdutionCard; +export default EducationCard; diff --git a/containers/Education.jsx b/containers/Education.jsx index e610823069b2c..e1680fa5f6f1e 100644 --- a/containers/Education.jsx +++ b/containers/Education.jsx @@ -1,9 +1,9 @@ import React from "react"; -import EdutionCard from "../components/EdutionCard"; +import EducationCard from "../components/EducationCard"; import { educationInfo } from "../portfolio"; import { Container, Row, Col } from "reactstrap"; -const Edution = () => { +const Education = () => { return (
@@ -25,7 +25,7 @@ const Edution = () => { lg="6" key={info.schoolName} > - + ); })} @@ -50,4 +50,4 @@ const Edution = () => { ); }; -export default Edution; +export default Education;