From 32c8b0b24e868505eb46b3dbe2f3e29d467df2e4 Mon Sep 17 00:00:00 2001 From: Anshul Gupta Date: Mon, 5 Aug 2024 23:49:55 -0700 Subject: Fix formatting --- frontend/src/app/layout.tsx | 30 ++++++++++++++++-------------- 1 file changed, 16 insertions(+), 14 deletions(-) (limited to 'frontend/src/app/layout.tsx') diff --git a/frontend/src/app/layout.tsx b/frontend/src/app/layout.tsx index 00da3a9..7eae606 100644 --- a/frontend/src/app/layout.tsx +++ b/frontend/src/app/layout.tsx @@ -1,21 +1,23 @@ -import type {Metadata} from "next"; -import {Inter} from "next/font/google"; +import type { Metadata } from "next"; +import { Inter } from "next/font/google"; import "./globals.css"; -import {UserProvider} from "@auth0/nextjs-auth0/client"; +import { UserProvider } from "@auth0/nextjs-auth0/client"; -const inter = Inter({subsets: ["latin"]}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Create Next App", - description: "Generated by create next app", + title: "Create Next App", + description: "Generated by create next app", }; -export default function RootLayout({children,}: Readonly<{ children: React.ReactNode; }>) { - return ( - - - {children} - - - ); +export default function RootLayout({ + children, +}: Readonly<{ children: React.ReactNode }>) { + return ( + + + {children} + + + ); } -- cgit v1.2.3