Add temporary Sentry test button (dev/test only)

Co-authored-by: Junie <junie@jetbrains.com>
This commit is contained in:
2026-07-25 13:46:43 +02:00
co-authored by Junie
parent 524b5a6dc7
commit c90300b9a4
8 changed files with 107 additions and 0 deletions
+2
View File
@@ -1,6 +1,7 @@
import type { ReactNode } from 'react';
import { Nav } from './Nav';
import { Footer } from './Footer';
import { SentryTestButton } from './SentryTestButton';
export function RootLayout({ children }: { children: ReactNode }) {
return (
@@ -8,6 +9,7 @@ export function RootLayout({ children }: { children: ReactNode }) {
<Nav />
{children}
<Footer />
<SentryTestButton />
</div>
);
}