File size: 226 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { ReactNode } from 'react'

function Layout(props: { foo: ReactNode; bar: ReactNode }) {
  return (
    <html>
      <body>
        {props.foo}
        {props.bar}
      </body>
    </html>
  )
}

export default Layout