Timeline: Use component

This commit is contained in:
Florian RICHER 2023-06-03 18:26:08 +02:00
parent 92a9a931cb
commit c5d61f5466
7 changed files with 130 additions and 45 deletions

View file

@ -0,0 +1,14 @@
import react, {ReactNode} from 'react'
import Project from '../../data/Project'
type TimelineCardSummaryProps = {
children: ReactNode
}
function TimelineCardSummary({ children } : TimelineCardSummaryProps) {
return (
<>{children}</>
)
}
export default TimelineCardSummary