stack/apps/backend/src/app/layout.tsx
2024-11-23 03:31:23 +01:00

23 lines
437 B
TypeScript

import type { Metadata } from 'next';
import React from 'react';
import '../polyfills';
export const metadata: Metadata = {
title: 'Stack Auth API',
description: 'API endpoint of Stack Auth.',
};
export default function RootLayout({
children,
}: {
children: React.ReactNode,
}) {
return (
<html lang="en" suppressHydrationWarning>
<body suppressHydrationWarning>
{children}
</body>
</html>
);
}