import type { LayoutProps, Metadata } from "@farm.js/core"; import "./globals.css"; export const metadata: Metadata = { title: "FARMJS React Compiler Starter", description: "Start a FARMJS app with the experimental React AOT compiler.", icons: { icon: [{ url: "/favicon.svg", type: "image/svg+xml", sizes: "any" }], }, }; export default function RootLayout({ children }: LayoutProps) { return (
{children} ); }