import React from 'react'; import { Alert, Content, Form, Title } from '@patternfly/react-core'; import PackageRecommendations from './PackageRecommendations'; import Packages from './Packages'; import { RHEL_8, RHEL_9 } from '../../../../constants'; import { useAppSelector } from '../../../../store/hooks'; import { selectDistribution } from '../../../../store/wizardSlice'; const PackagesStep = () => { const distribution = useAppSelector(selectDistribution); return (
Additional packages Blueprints created with Images include all required packages. {!process.env.IS_ON_PREMISE && ( Search for package groups by starting your search with the '@' character. A single '@' as search input lists all available package groups. )} {process.env.IS_ON_PREMISE && ( Search for exact matches by specifying the whole package name, or glob using asterisk wildcards (*) before or after the package name. )} {(distribution === RHEL_8 || distribution === RHEL_9) && ( )} ); }; export default PackagesStep;