chore: update imports in pages

This commit is contained in:
afiqzudinhadi 2025-06-20 17:46:58 +08:00
parent 392fc86ba8
commit 17ab887795
3 changed files with 81 additions and 30 deletions

View file

@ -1,13 +1,15 @@
import "./styles.css";
// import "@repo/ui/globals.css";
import "@repo/ui/globals.css";
export default function RootLayout({
children,
children,
}: {
children: React.ReactNode;
children: React.ReactNode;
}) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
return (
<html lang="en">
<body>{children}</body>
</html>
);
}