midi-hello-world / app /layout.tsx
peter288's picture
Upload 5 files
64ddb35 verified
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>
);
}