go.charczuk.com@v0.0.0-20240327042549-bc490516bd1a/projects/nodes/static/_nextjs/src/app/layout.tsx (about) 1 /** 2 * Copyright (c) 2024 - Present. Will Charczuk. All rights reserved. 3 * Use of this source code is governed by a MIT license that can be found in the LICENSE file at the root of the repository. 4 */ 5 'use client'; 6 7 import * as React from 'react'; 8 9 export interface ReactChildren { 10 children: React.ReactNode 11 } 12 13 import '../css/site.css' 14 15 export default function RootLayout({ children }: ReactChildren) { 16 return ( 17 <html> 18 <head /> 19 <body className="bp5-dark"> 20 <div id="app"> 21 <main>{children}</main> 22 </div> 23 </body> 24 </html> 25 ) 26 }