import * as React from 'react';
import Helmet from 'react-helmet';
import {
Page,
PageSection,
Text,
TextContent,
Title,
} from '@patternfly/react-core';
export default function ExamplePage() {
return (
<>
Hello, Plugin!
Hello, Plugin!
Nice! Your plugin is working.
This is a custom page contributed by the console plugin template.
The extension that adds the page is declared in
console-extensions.json in the project root along with the
corresponding nav item. Update console-extensions.json to change
or add extensions. Code references in console-extensions.json must
have a corresonding property exposedModules in
package.json mapping the reference to the module.
After cloning this project, replace references to{' '}
console-template-plugin and other plugin metadata in
package.json with values for your plugin.
>
);
}