2023-06-03 13:19:46 +02:00
|
|
|
import './Timeline.scss'
|
|
|
|
import react, { ReactNode } from 'react'
|
|
|
|
|
|
|
|
type TimelapseProps = {
|
|
|
|
children: ReactNode
|
|
|
|
}
|
|
|
|
|
|
|
|
function Timeline({ children } : TimelapseProps) {
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className='timeline'>
|
2023-06-03 13:26:57 +02:00
|
|
|
<ul className='timeline'>
|
2023-06-03 13:19:46 +02:00
|
|
|
{ children }
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Timeline
|