1
0
mirror of https://github.com/kremalicious/portfolio.git synced 2024-06-23 01:36:39 +02:00
portfolio/src/components/molecules/ProjectTechstack.jsx

23 lines
534 B
React
Raw Normal View History

2018-04-11 12:46:55 +02:00
import React from 'react'
import PropTypes from 'prop-types'
2021-03-12 23:47:28 +01:00
import { projectTechstack, title } from './ProjectTechstack.module.css'
2018-04-11 12:46:55 +02:00
const ProjectTechstack = ({ techstack }) => (
2021-03-12 23:47:28 +01:00
<div className={projectTechstack}>
<h3 className={title}>
2018-04-11 13:46:55 +02:00
Tools & Technologies <span>The tech stack I was involved with.</span>
2018-04-11 12:46:55 +02:00
</h3>
2018-08-05 19:04:36 +02:00
<ul>
2020-03-21 23:55:40 +01:00
{techstack.map((tech) => (
2018-08-05 19:04:36 +02:00
<li key={tech}>{tech}</li>
))}
</ul>
2018-04-11 12:46:55 +02:00
</div>
)
ProjectTechstack.propTypes = {
2018-05-14 22:30:18 +02:00
techstack: PropTypes.array
2018-04-11 12:46:55 +02:00
}
export default ProjectTechstack