13 lines
243 B
TypeScript
13 lines
243 B
TypeScript
|
import react, {ReactNode} from 'react'
|
||
|
|
||
|
type TimelineCardContentProps = {
|
||
|
children: ReactNode
|
||
|
}
|
||
|
|
||
|
function TimelineCardContent({ children } : TimelineCardContentProps) {
|
||
|
return (
|
||
|
<>{children}</>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
export default TimelineCardContent
|