mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-30 21:01:54 +08:00
23 lines
437 B
TypeScript
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>
|
|
);
|
|
}
|