Skip to content

Commit

Permalink
More indentation updates
Browse files Browse the repository at this point in the history
  • Loading branch information
mluypaert committed Sep 6, 2024
1 parent 8952864 commit d1c0f13
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions webui/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,19 @@ import "./globals.css";
const inter = Inter({ subsets: ["latin"] });

export const metadata: Metadata = {
title: "PAVI webUI pilot",
description: "Generated by create next app",
icons: "https://www.alliancegenome.org/favicon-16x16.png",
title: "PAVI webUI pilot",
description: "Generated by create next app",
icons: "https://www.alliancegenome.org/favicon-16x16.png",
};

export default function RootLayout({
children,
children,
}: Readonly<{
children: React.ReactNode;
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body className={inter.className}>{children}</body>
</html>
);
return (
<html lang="en">
<body className={inter.className}>{children}</body>
</html>
);
}

0 comments on commit d1c0f13

Please sign in to comment.