mirror of
https://github.com/ansible/awx.git
synced 2026-02-23 05:55:59 -03:30
update page navigation
fix issue with jerky close and expand of nav update nav to use expandle headers separate settings pages out into separate stup page components
This commit is contained in:
21
src/pages/SystemSettings.jsx
Normal file
21
src/pages/SystemSettings.jsx
Normal file
@@ -0,0 +1,21 @@
|
||||
import React, { Component, Fragment } from 'react';
|
||||
import {
|
||||
PageSection,
|
||||
PageSectionVariants,
|
||||
Title,
|
||||
} from '@patternfly/react-core';
|
||||
|
||||
class SystemSettings extends Component {
|
||||
render () {
|
||||
const { light, medium } = PageSectionVariants;
|
||||
|
||||
return (
|
||||
<Fragment>
|
||||
<PageSection variant={light}><Title size="2xl">System Settings</Title></PageSection>
|
||||
<PageSection variant={medium} />
|
||||
</Fragment>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export default SystemSettings;
|
||||
Reference in New Issue
Block a user