portfolio_leptos/src/components/timeline/TimelineLabel.tsx

14 lines
260 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 TimelineLabelProps = {
children: ReactNode
}
function TimelineLabel({ children } : TimelineLabelProps) {
return (
<>{children}</>
)
}
export default TimelineLabel