UNPKG

@roadiehq/backstage-plugin-github-pull-requests

Version:
13 lines (10 loc) 868 B
import { jsx, jsxs } from 'react/jsx-runtime'; import { Grid } from '@material-ui/core'; import { Page, Content, ContentHeader, SupportButton } from '@backstage/core-components'; import { PullRequestsTable } from '../PullRequestsTable/PullRequestsTable.esm.js'; const PullRequestsPage = () => /* @__PURE__ */ jsx(Page, { themeId: "tool", children: /* @__PURE__ */ jsxs(Content, { children: [ /* @__PURE__ */ jsx(ContentHeader, { title: "GitHub Pull Requests", children: /* @__PURE__ */ jsx(SupportButton, { children: "Plugin to show a project's pull requests on GitHub" }) }), /* @__PURE__ */ jsx(Grid, { container: true, spacing: 3, direction: "column", children: /* @__PURE__ */ jsx(Grid, { item: true, children: /* @__PURE__ */ jsx(PullRequestsTable, {}) }) }) ] }) }); export { PullRequestsPage as default }; //# sourceMappingURL=PullRequestsPage.esm.js.map