Files
asimonson1125.github.io/react_OLD/src/componets/Neon.js
2023-01-28 13:02:29 -06:00

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>
</>
);
}