Complete for 9/29/21 career fair

I still don't think this is complete, but it's all I can muster right now.
This commit is contained in:
2021-09-28 21:08:31 -04:00
parent 3cdf99ac39
commit 222a8f282b
21 changed files with 297 additions and 83 deletions

17
src/componets/Skills.js Normal file
View File

@@ -0,0 +1,17 @@
import React from 'react'
export default function Skills(props){
let allSkills;
props.children.forEach(x => {
allSkills = (
<>
{allSkills}
<li className='skill'>{x}</li>
</>
)
});
return (
<ul className='skills'>
{allSkills}
</ul>);
}