import { Links, Meta, MetaFunction, Outlet, Scripts, ScrollRestoration, } from "react-router"; import "./tailwind.css"; import "./index.css"; import React from "react"; import { Toaster } from "react-hot-toast"; export function Layout({ children }: { children: React.ReactNode }) { return ( {children} ); } export const meta: MetaFunction = () => [ { title: "OpenHands" }, { name: "description", content: "Let's Start Building!" }, ]; export default function App() { return ; }