File tree Expand file tree Collapse file tree 1 file changed +18
-7
lines changed
client/src/app/pages/RekorSearch Expand file tree Collapse file tree 1 file changed +18
-7
lines changed Original file line number Diff line number Diff line change 1- import { PageSection } from "@patternfly/ react-core " ;
2- import { Explorer } from "./components/Explorer" ;
1+ import React , { Fragment } from "react" ;
2+
33import { RekorClientProvider } from "@app/api/context" ;
4+ import { Content , PageSection } from "@patternfly/react-core" ;
5+
6+ import { Explorer } from "./components/Explorer" ;
47
58export const RekorSearch : React . FC = ( ) => {
69 return (
7- < PageSection >
8- < RekorClientProvider >
9- < Explorer />
10- </ RekorClientProvider >
11- </ PageSection >
10+ < Fragment >
11+ < PageSection variant = "default" >
12+ < Content >
13+ < h1 > Rekor Search</ h1 >
14+ < p > Search the Rekor public transparency log.</ p >
15+ </ Content >
16+ </ PageSection >
17+ < PageSection variant = "secondary" isFilled >
18+ < RekorClientProvider >
19+ < Explorer />
20+ </ RekorClientProvider >
21+ </ PageSection >
22+ </ Fragment >
1223 ) ;
1324} ;
You can’t perform that action at this time.
0 commit comments