Files
svg-sprites/integration/apps/next-app-turbopack/app/layout.tsx
T

12 lines
218 B
TypeScript
Raw Normal View History

import type { ReactNode } from 'react'
import './style.css'
export default function RootLayout({ children }: { children: ReactNode }) {
return (
<html lang="en">
<body>{children}</body>
</html>
)
}