mirror of
https://github.com/asimonson1125/asimonson1125.github.io.git
synced 2026-02-25 05:09:49 -06:00
Create Error Page
This commit is contained in:
21
src/componets/Neon.js
Normal file
21
src/componets/Neon.js
Normal 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>
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user