D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
usr
/
share
/
grafana
/
public
/
app
/
core
/
components
/
Page
/
Filename :
PluginPage.tsx
back
Copy
import React, { useContext } from 'react'; import { PluginPageProps } from '@grafana/runtime'; import { PluginPageContext } from 'app/features/plugins/components/PluginPageContext'; import { Page } from './Page'; export function PluginPage({ actions, children, info, pageNav, layout, renderTitle, subTitle }: PluginPageProps) { const context = useContext(PluginPageContext); return ( <Page navModel={context.sectionNav} pageNav={pageNav} layout={layout} actions={actions} renderTitle={renderTitle} info={info} subTitle={subTitle} > <Page.Contents>{children}</Page.Contents> </Page> ); }