mirror of https://github.com/grafana/grafana
RestoreDashboards: Create trash section (#88278)
* feat: add feature toggle to docs * feat: create page in BE * feat: create page in FE * refactor: set feat toggle as a condition * refactor * refactor * refactor * feat: add permission conditions * refactor * feat: add subtitle to translations * feat: add to codeowners * refactor: fix docs situation * refactor * Merge main branch into feat branchpull/88351/head^2
parent
f772056296
commit
f6a83432a5
@ -0,0 +1,15 @@ |
||||
import React from 'react'; |
||||
|
||||
import { Page } from 'app/core/components/Page/Page'; |
||||
|
||||
const TrashPage = () => { |
||||
return ( |
||||
<Page navId="dashboards/trash"> |
||||
<Page.Contents> |
||||
<p>page content</p> |
||||
</Page.Contents> |
||||
</Page> |
||||
); |
||||
}; |
||||
|
||||
export default TrashPage; |
||||
Loading…
Reference in new issue