Add Project + GGJ
This commit is contained in:
parent
e8a1a76c95
commit
19e243c1e1
4 changed files with 175 additions and 3 deletions
16
src/components/project/ProjectList.tsx
Normal file
16
src/components/project/ProjectList.tsx
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue