Skip to content

Commit

Permalink
Merge pull request #9 from ammont82/adding-more-external-components
Browse files Browse the repository at this point in the history
Add more external components
  • Loading branch information
ammont82 authored Mar 15, 2024
2 parents 44e3fdb + ca20cda commit b9b43bb
Show file tree
Hide file tree
Showing 7 changed files with 42 additions and 0 deletions.
24 changes: 24 additions & 0 deletions fec.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,30 @@ module.exports = {
__dirname,
'./src/components/ExternalLink.tsx',
),
'./AssistedInstallerDetailCard': path.resolve(
__dirname,
'./src/components/AssistedInstallerDetailCard.tsx',
),
'./AssistedInstallerExtraDetailCard': path.resolve(
__dirname,
'./src/components/AssistedInstallerExtraDetailCard.tsx',
),
'./ClusterStatus': path.resolve(
__dirname,
'./src/components/ClusterStatus.tsx',
),
'./FeatureSupportsLevel': path.resolve(
__dirname,
'./src/components/FeatureSupportsLevel.tsx',
),
'./HostsClusterDetailTab': path.resolve(
__dirname,
'./src/components/HostsClusterDetailTab.tsx',
),
'./Services': path.resolve(
__dirname,
'./src/components/Services.tsx',
),
},
exclude: [],
shared: [],
Expand Down
3 changes: 3 additions & 0 deletions src/components/AssistedInstallerDetailCard.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { AssistedInstallerDetailCard } from '@openshift-assisted/ui-lib/ocm';
import '../i18n';
export default AssistedInstallerDetailCard;
3 changes: 3 additions & 0 deletions src/components/AssistedInstallerExtraDetailCard.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { AssistedInstallerExtraDetailCard } from '@openshift-assisted/ui-lib/ocm';
import '../i18n';
export default AssistedInstallerExtraDetailCard;
3 changes: 3 additions & 0 deletions src/components/ClusterStatus.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { ClusterStatus } from '@openshift-assisted/ui-lib/ocm';
import '../i18n';
export default ClusterStatus;
3 changes: 3 additions & 0 deletions src/components/FeatureSupportsLevel.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { FeaturesSupportsLevel } from '@openshift-assisted/ui-lib/ocm';
import '../i18n';
export default FeaturesSupportsLevel;
3 changes: 3 additions & 0 deletions src/components/HostsClusterDetailTab.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { HostsClusterDetailTab } from '@openshift-assisted/ui-lib/ocm';
import '../i18n';
export default HostsClusterDetailTab;
3 changes: 3 additions & 0 deletions src/components/Services.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { Services } from '@openshift-assisted/ui-lib/ocm';
import '../i18n';
export default Services;

0 comments on commit b9b43bb

Please sign in to comment.