portfolio_leptos/src/components/timeline/TimelineLabel.tsx

14 lines
No EOL
260 B
TypeScript

import react, {ReactNode} from 'react'
import Project from '../../data/Project'
type TimelineLabelProps = {
children: ReactNode
}
function TimelineLabel({ children } : TimelineLabelProps) {
return (
<>{children}</>
)
}
export default TimelineLabel