midiplayer-pro2 / app /layout.tsx
peter288's picture
Upload 10 files
c911c4d verified
raw
history blame contribute delete
348 Bytes
export const metadata = {
title: "MidiPlayer Pro",
description: "Next.js MIDI player using MidiPlayerJS and Soundfont-player"
}
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="en">
<body>{children}</body>
</html>
)
}