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