Allow modals to be rendered on top of landing table.

This commit is contained in:
Martin Maroši 2022-11-28 11:31:36 +01:00 committed by Lucas Garfield
parent 0f89ced2a0
commit 88240aa757

View file

@ -9,6 +9,7 @@ import {
PageHeader,
PageHeaderTitle,
} from '@redhat-cloud-services/frontend-components';
import { Outlet } from 'react-router-dom';
import ImagesTable from '../ImagesTable/ImagesTable';
import './LandingPage.scss';
@ -63,6 +64,7 @@ class LandingPage extends Component {
<section className="pf-l-page__main-section pf-c-page__main-section">
<ImagesTable />
</section>
<Outlet />
</React.Fragment>
);
}