mirror of
https://github.com/ZwareBear/awx.git
synced 2026-03-24 17:53:36 -05:00
16 lines
288 B
JavaScript
16 lines
288 B
JavaScript
import React from 'react';
|
|
import { Card, PageSection } from '@patternfly/react-core';
|
|
|
|
function ApplicatonAdd() {
|
|
return (
|
|
<>
|
|
<PageSection>
|
|
<Card>
|
|
<div>Applications Add</div>
|
|
</Card>
|
|
</PageSection>
|
|
</>
|
|
);
|
|
}
|
|
export default ApplicatonAdd;
|