rafmacalaba's picture
Deploy MVP App
ac239be
import './globals.css';
export const metadata = {
title: 'Hugging Face Spaces Annotation App',
description: 'Minimal MVP for annotation',
};
export default function RootLayout({ children }) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}