Skip to content

Commit

Permalink
name convetion fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Angryman18 committed Jul 10, 2022
1 parent a7c43e5 commit 6128509
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/common/techstack/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import {
} from "react-icons/si";
import NHost from "images/nhost.svg";

export const Tech = [
export const TechStackInfo = [
{
comp: SiReact,
text: "ReactJS",
Expand Down
4 changes: 2 additions & 2 deletions src/common/techstack/techstack.jsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { Tech } from ".";
import { TechStackInfo } from ".";

const TechStack = () => {
return (
<div className='flex justify-center items-center'>
<div className='md:w-[800px] 2xl:w-[1000px] w-full flex flex-wrap shadow-md m-8'>
{Tech.map((Item, idx) => {
{TechStackInfo.map((Item, idx) => {
if (Item.type === "icon") {
return (
<a
Expand Down

0 comments on commit 6128509

Please sign in to comment.