Files
incidentops/web/app/layout.tsx

20 lines
343 B
TypeScript
Raw Normal View History

2025-01-06 12:00:00 -05:00
import type { Metadata } from 'next';
import './globals.css';
export const metadata: Metadata = {
title: 'IncidentOps',
description: 'Incident Management Platform',
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}