Skip to content

Commit

Permalink
Merge branch 'main' into arek/use-screen-instead-of-destructing-render
Browse files Browse the repository at this point in the history
  • Loading branch information
PSchmiedmayer authored May 29, 2024
2 parents 5300d68 + 77fec26 commit 2639c62
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,7 @@ next-env.d.ts
eslint_report.json

# docs
docs
docs

# editors
.idea/
3 changes: 2 additions & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"semi": false,
"singleQuote": true
"singleQuote": true,
"experimentalTernaries": true
}
6 changes: 1 addition & 5 deletions app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,7 @@ interface RootLayoutProps {
children: ReactNode
}

export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
export default function RootLayout({ children }: RootLayoutProps) {
return (
<html lang="en">
<body>{children}</body>
Expand Down

0 comments on commit 2639c62

Please sign in to comment.