Files
pangolin/src/app/[orgId]/settings/alerting/[ruleId]/layout.tsx
T
2026-04-22 17:27:30 -07:00

14 lines
233 B
TypeScript

import type { Metadata } from "next";
export const metadata: Metadata = {
title: "Edit Alert"
};
export default function EditAlertRuleLayout({
children
}: {
children: React.ReactNode;
}) {
return <>{children}</>;
}