mirror of
https://github.com/ansible/awx.git
synced 2026-02-04 02:58:13 -03:30
25 lines
556 B
JavaScript
25 lines
556 B
JavaScript
import React, { Fragment } from 'react';
|
|
import { Trans } from '@lingui/macro';
|
|
import {
|
|
PageSection,
|
|
PageSectionVariants,
|
|
Title,
|
|
} from '@patternfly/react-core';
|
|
|
|
const { light, medium } = PageSectionVariants;
|
|
|
|
const OrganizationView = () => (
|
|
<Fragment>
|
|
<PageSection variant={light} className="pf-m-condensed">
|
|
<Title size="2xl">
|
|
<Trans>Organization Add</Trans>
|
|
</Title>
|
|
</PageSection>
|
|
<PageSection variant={medium}>
|
|
This is the add view
|
|
</PageSection>
|
|
</Fragment>
|
|
);
|
|
|
|
export default OrganizationView;
|