import type { MetaFunction } from '@remix-run/node'; import { Links, LiveReload, Meta, Outlet, Scripts, ScrollRestoration } from '@remix-run/react'; export const meta: MetaFunction = () => ({ charset: 'utf-8', title: 'discord.js', viewport: 'width=device-width,initial-scale=1', }); export default function App() { return ( ); }