import React from 'react' import PropTypes from 'prop-types' import { projectTechstack, title } from './ProjectTechstack.module.css' const ProjectTechstack = ({ techstack }) => (

Tools & Technologies The tech stack I was involved with.

) ProjectTechstack.propTypes = { techstack: PropTypes.array } export default ProjectTechstack