File tree 1 file changed +9
-9
lines changed
1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change 1
- import ' ./globals.css'
2
- import type { Metadata } from ' next'
3
- import { Inter } from ' next/font/google'
1
+ import " ./globals.css" ;
2
+ import type { Metadata } from " next" ;
3
+ import { Inter } from " next/font/google" ;
4
4
5
- const inter = Inter ( { subsets : [ ' latin' ] } )
5
+ const inter = Inter ( { subsets : [ " latin" ] } ) ;
6
6
7
7
export const metadata : Metadata = {
8
- title : 'Create Next App' ,
9
- description : 'Generated by create next app' ,
10
- }
8
+ title : "Code Execution Demo" ,
9
+ description : "Remote Code Execution Demo" ,
10
+ } ;
11
11
12
12
export default function RootLayout ( {
13
13
children,
14
14
} : {
15
- children : React . ReactNode
15
+ children : React . ReactNode ;
16
16
} ) {
17
17
return (
18
18
< html lang = "en" >
19
19
< body className = { inter . className } > { children } </ body >
20
20
</ html >
21
- )
21
+ ) ;
22
22
}
You can’t perform that action at this time.
0 commit comments