File tree Expand file tree Collapse file tree 2 files changed +22
-1
lines changed
Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Original file line number Diff line number Diff line change 11import { ThemeProvider , BaseStyles , Box } from "@primer/react" ;
22import type { ReactNode } from "react" ;
33import { useEffect } from "react" ;
4+ import { FeedbackFooter } from "./FeedbackFooter" ;
45
56interface AppProviderProps {
67 children : ReactNode ;
@@ -19,7 +20,10 @@ export function AppProvider({ children }: AppProviderProps) {
1920 return (
2021 < ThemeProvider colorMode = "auto" >
2122 < BaseStyles >
22- < Box p = { 3 } > { children } </ Box >
23+ < Box p = { 3 } >
24+ { children }
25+ < FeedbackFooter />
26+ </ Box >
2327 </ BaseStyles >
2428 </ ThemeProvider >
2529 ) ;
Original file line number Diff line number Diff line change 1+ import { Box , Text } from "@primer/react" ;
2+
3+ export function FeedbackFooter ( ) {
4+ return (
5+ < Box
6+ display = "flex"
7+ justifyContent = "center"
8+ mt = { 2 }
9+ >
10+ < Text sx = { { color : "fg.subtle" , fontSize : 0 , textAlign : "center" } } >
11+ Help us improve MCP Apps support in the GitHub MCP Server
12+ < br />
13+ github.com/github/github-mcp-server/issues/new?template=insiders-feedback.md
14+ </ Text >
15+ </ Box >
16+ ) ;
17+ }
You can’t perform that action at this time.
0 commit comments