portfolio_leptos/src_old/components/timeline/TimelineLabel.tsx

13 lines
No EOL
219 B
TypeScript

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