Add Project + GGJ

This commit is contained in:
Florian RICHER 2023-06-04 13:27:29 +02:00
parent e8a1a76c95
commit 19e243c1e1
4 changed files with 175 additions and 3 deletions

View file

@ -0,0 +1,16 @@
import './ProjectList.scss'
import react from 'react'
type ProjectListProps = {
children: react.ReactElement<any, react.JSXElementConstructor<any>> | react.ReactElement<any, react.JSXElementConstructor<any>>[]
}
function ProjectList({ children } : ProjectListProps) {
return (
<div className="project_list">
{ children }
</div>
)
}
export default ProjectList