RedHatInsights/insights-rbac-ui

View on GitHub
src/smart-components/myUserAccess/bundles/rhel.js

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react';
import PropTypes from 'prop-types';
import CommonBundleView from '../CommonBundleView';

const RhelBundle = ({ apps }) => <CommonBundleView apps={apps} />;

RhelBundle.propTypes = {
  apps: PropTypes.arrayOf(PropTypes.string).isRequired,
};

export default RhelBundle;