mirror of
https://github.com/tomru/pdfer.git
synced 2026-03-03 14:37:21 +01:00
13 lines
215 B
TypeScript
13 lines
215 B
TypeScript
import React from 'react'
|
|
|
|
import Header from './Header'
|
|
|
|
export default function Layout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<>
|
|
<Header />
|
|
<main>{children}</main>
|
|
</>
|
|
)
|
|
}
|