2020-09-18 08:04:55 +00:00
|
|
|
import { PageSection } from "@patternfly/react-core";
|
2020-09-09 09:07:17 +00:00
|
|
|
import React from "react";
|
|
|
|
|
2020-09-10 18:04:03 +00:00
|
|
|
export const SessionsSection = () => {
|
2020-09-18 08:04:55 +00:00
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<>
|
|
|
|
<PageSection variant="light">The Sessions Page</PageSection>
|
|
|
|
</>
|
|
|
|
;
|
|
|
|
</>
|
|
|
|
);
|
2020-09-09 09:07:17 +00:00
|
|
|
};
|