8 lines
177 B
TypeScript
8 lines
177 B
TypeScript
|
import { PageSection } from "@patternfly/react-core";
|
||
|
|
||
|
const Applications = () => (
|
||
|
<PageSection>This is the applications page.</PageSection>
|
||
|
);
|
||
|
|
||
|
export default Applications;
|