The access.redhat.com documentation moved from `https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/8/html/creating_customized_rhel_images_using_the_image_builder_service/index` to `https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/8/html/creating_customized_images_by_using_insights_image_builder/index`.
25 lines
635 B
JavaScript
25 lines
635 B
JavaScript
import React from 'react';
|
|
|
|
import { Button } from '@patternfly/react-core';
|
|
import { ExternalLinkAltIcon } from '@patternfly/react-icons';
|
|
|
|
const DocumentationButton = () => {
|
|
const documentationURL =
|
|
'https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/8/html/creating_customized_images_by_using_insights_image_builder/index';
|
|
|
|
return (
|
|
<Button
|
|
component="a"
|
|
target="_blank"
|
|
variant="link"
|
|
icon={<ExternalLinkAltIcon />}
|
|
iconPosition="right"
|
|
isInline
|
|
href={documentationURL}
|
|
>
|
|
Documentation
|
|
</Button>
|
|
);
|
|
};
|
|
|
|
export default DocumentationButton;
|