mirror of
https://github.com/asimonson1125/asimonson1125.github.io.git
synced 2026-02-25 05:09:49 -06:00
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:
17
src/componets/Skills.js
Normal file
17
src/componets/Skills.js
Normal 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>);
|
||||
}
|
||||
Reference in New Issue
Block a user