Spaces:
Sleeping
Sleeping
import type { Metadata } from 'next'; | |
import type { ReactNode } from 'react'; | |
export const metadata: Metadata = { | |
title: "MIDI Hello World", | |
description: "A minimal MIDI player example for Hugging Face Spaces.", | |
}; | |
export default function RootLayout({ children }: { children: ReactNode }) { | |
return ( | |
<html lang="en"> | |
<body>{children}</body> | |
</html> | |
); | |
} |