mirror of
https://github.com/hashicorp/packer.git
synced 2026-04-21 06:07:21 -04:00
21 lines
368 B
TypeScript
21 lines
368 B
TypeScript
import TextSplitWithImage from '@hashicorp/react-text-split-with-image'
|
|
|
|
export default function IntegrationsTextSplit({
|
|
heading,
|
|
links,
|
|
content,
|
|
image,
|
|
}) {
|
|
return (
|
|
<TextSplitWithImage
|
|
textSplit={{
|
|
heading,
|
|
product: 'packer',
|
|
content,
|
|
linkStyle: 'buttons',
|
|
links,
|
|
}}
|
|
image={image}
|
|
/>
|
|
)
|
|
}
|