mirror of
https://github.com/asimonson1125/asimonson1125.github.io.git
synced 2026-02-25 05:09:49 -06:00
18 lines
374 B
JavaScript
18 lines
374 B
JavaScript
import React from 'react'
|
|
|
|
export default function ProjectList(props){
|
|
let projects;
|
|
props.children.forEach(function(x){
|
|
projects = (
|
|
<>
|
|
{projects}
|
|
{x}
|
|
</>
|
|
);
|
|
});
|
|
return(
|
|
<div className='projectList centeredForeground' data-aos='fade-up'>
|
|
{projects}
|
|
</div>
|
|
);
|
|
}
|