mirror of
https://github.com/ZwareBear/awx.git
synced 2026-03-25 02:03:37 -05:00
Add Organization Details view and test
This commit is contained in:
13
src/components/BasicChip/BasicChip.jsx
Normal file
13
src/components/BasicChip/BasicChip.jsx
Normal file
@@ -0,0 +1,13 @@
|
||||
import React from 'react';
|
||||
import { Chip } from '@patternfly/react-core';
|
||||
import './basicChip.scss';
|
||||
|
||||
const BasicChip = ({ text }) => (
|
||||
<Chip
|
||||
className="awx-c-chip--basic"
|
||||
>
|
||||
{text}
|
||||
</Chip>
|
||||
);
|
||||
|
||||
export default BasicChip;
|
||||
Reference in New Issue
Block a user