archive ReactApp

This commit is contained in:
2023-01-28 13:02:29 -06:00
parent c82606319c
commit 87833551a6
74 changed files with 2809 additions and 2 deletions

View File

@@ -0,0 +1,21 @@
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>
</>
);
}