mirror of
https://github.com/asimonson1125/asimonson1125.github.io.git
synced 2026-02-25 05:09:49 -06:00
22 lines
384 B
JavaScript
22 lines
384 B
JavaScript
export default function ProjectList(props) {
|
|
let text;
|
|
props.children.forEach(function (x) {
|
|
text = (
|
|
<>
|
|
{text}
|
|
{x}
|
|
</>
|
|
);
|
|
});
|
|
text = (<div className='neonBox'>{text}</div>)
|
|
return (
|
|
<>
|
|
<div id="pBody">
|
|
<div className="fPage">
|
|
<div className="heightBox">{text}</div>
|
|
</div>
|
|
</div>
|
|
</>
|
|
);
|
|
}
|