Skip to content

Commit

Permalink
feat: wip
Browse files Browse the repository at this point in the history
  • Loading branch information
TimMikeladze committed Dec 30, 2023
1 parent 4d88cc7 commit 74502e5
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions examples/next-realtime-example/src/app/layout.tsx
@@ -1,3 +1,5 @@
import { ReactNode } from 'react';

import type { Metadata } from 'next';
import { Inter } from 'next/font/google';
import './globals.css';
Expand All @@ -9,11 +11,7 @@ export const metadata: Metadata = {
description: 'Generated by create next app',
};

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

0 comments on commit 74502e5

Please sign in to comment.