From df0a668d416014f19313419dc7701ddcbe4ee312 Mon Sep 17 00:00:00 2001 From: Remix Run Bot Date: Thu, 22 Feb 2024 00:33:54 +0000 Subject: [PATCH] chore: format --- .../vite-cloudflare/app/routes/_index.tsx | 45 ++++++++++--------- 1 file changed, 25 insertions(+), 20 deletions(-) diff --git a/templates/vite-cloudflare/app/routes/_index.tsx b/templates/vite-cloudflare/app/routes/_index.tsx index edb05f943a3..828fdf19bbc 100644 --- a/templates/vite-cloudflare/app/routes/_index.tsx +++ b/templates/vite-cloudflare/app/routes/_index.tsx @@ -3,28 +3,33 @@ import type { MetaFunction } from "@remix-run/node"; export const meta: MetaFunction = () => { return [ { title: "New Remix App" }, - { name: "description", content: "Welcome to Remix! Using Vite and Cloudflare!" }, + { + name: "description", + content: "Welcome to Remix! Using Vite and Cloudflare!", + }, ]; }; export default function Index() { - return (
-

Welcome to Remix (with Vite and Cloudflare)

- -
); + return ( +
+

Welcome to Remix (with Vite and Cloudflare)

+ +
+ ); }