portfolio_leptos/src_old/components/timeline/TimelineLabel.tsx

13 lines
219 B
TypeScript
Raw Normal View History

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