File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import { Inter } from "next/font/google";
88const inter = Inter ( { subsets : [ "latin" ] } ) ;
99
1010/** Root layout. */
11- export default function RootLayout ( { children } : { children : React . ReactNode } ) : JSX . Element {
11+ export default function RootLayout ( { children } : { children : React . ReactNode } ) {
1212 return (
1313 < html lang = "en" >
1414 < body className = { inter . className } >
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ export const metadata = {
66} ;
77
88/** next.js landing page */
9- export default function Page ( ) : JSX . Element {
9+ export default function Page ( ) {
1010 return (
1111 < LandingPage title = "Next.js Example" >
1212 < Demo />
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import { Header } from "@repo/shared";
55import { Core } from "nextjs-darkmode" ;
66
77/** Vite App */
8- function App ( ) : JSX . Element {
8+ function App ( ) {
99 return (
1010 < Layout >
1111 < Core />
You can’t perform that action at this time.
0 commit comments