portfolio_leptos/src/components/timeline/TimelineCardSummary.tsx

14 lines
284 B
TypeScript
Raw Normal View History

2023-06-03 18:26:08 +02:00
import react, {ReactNode} from 'react'
import Project from '../../data/Project'
type TimelineCardSummaryProps = {
children: ReactNode
}
function TimelineCardSummary({ children } : TimelineCardSummaryProps) {
return (
<>{children}</>
)
}
export default TimelineCardSummary