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