Add Organization Details view and test

This commit is contained in:
Marliana Lara
2019-02-01 09:16:49 -05:00
parent a2007b8e0c
commit 8846e1427e
7 changed files with 285 additions and 25 deletions

View 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;