Spaces:
Sleeping
Sleeping
File size: 391 Bytes
64ddb35 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
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>
);
} |