css and routing update

I did a lot with the css
This commit is contained in:
2021-09-26 22:48:26 -04:00
parent 4882b391c4
commit 00cded7e03
11 changed files with 544 additions and 85 deletions

View File

@@ -0,0 +1,20 @@
import React from 'react'
export default function ProjectList(props){
let projects;
props.children.forEach(function(x){
projects = (
<>
{projects}
{x}
</>
);
});
return(
<>
<ul className='projectList'>
{projects}
</ul>
</>
);
}