From 192d891e4f8de99a96b309af1f5988c0f13dc62f Mon Sep 17 00:00:00 2001 From: Erik Jan de Wit Date: Thu, 6 Aug 2020 11:43:33 +0200 Subject: [PATCH] added missing section --- src/App.tsx | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 77e569f4a8..142780cc86 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -4,7 +4,7 @@ import { ClientList } from './clients/ClientList'; import { DataLoader } from './components/data-loader/DataLoader'; import { HttpClientContext } from './http-service/HttpClientContext'; import { Client } from './clients/client-model'; -import { Page } from '@patternfly/react-core'; +import { Page, PageSection } from '@patternfly/react-core'; import { Header } from './PageHeader'; import { PageNav } from './PageNav'; @@ -18,9 +18,11 @@ export const App = () => { }; return ( } sidebar={}> - - {(clients) => } - + + + {(clients) => } + + ); };