mirror of
https://github.com/ansible/awx.git
synced 2026-02-03 02:28:12 -03:30
one way of approaching nav
This commit is contained in:
21
src/pages/Credentials.jsx
Normal file
21
src/pages/Credentials.jsx
Normal file
@@ -0,0 +1,21 @@
|
||||
import React, { Component, Fragment } from 'react';
|
||||
import {
|
||||
PageSection,
|
||||
PageSectionVariants,
|
||||
Title,
|
||||
} from '@patternfly/react-core';
|
||||
|
||||
class Credentials extends Component {
|
||||
render () {
|
||||
const { light, medium } = PageSectionVariants;
|
||||
|
||||
return (
|
||||
<Fragment>
|
||||
<PageSection variant={light}><Title size="2xl">Credentials</Title></PageSection>
|
||||
<PageSection variant={medium} />
|
||||
</Fragment>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export default Credentials;
|
||||
Reference in New Issue
Block a user