Timeline: Use component
This commit is contained in:
parent
92a9a931cb
commit
c5d61f5466
7 changed files with 130 additions and 45 deletions
14
src/components/timeline/TimelineCardSummary.tsx
Normal file
14
src/components/timeline/TimelineCardSummary.tsx
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue