profile / src /components /SkillTag.js
n0w0f's picture
Replace FastAPI with React portfolio
c990683
raw
history blame contribute delete
208 Bytes
import React from 'react';
const SkillTag = ({ skill }) => {
return (
<span className="px-3 py-1 bg-light text-primary rounded-full text-sm">
{skill}
</span>
);
};
export default SkillTag;