Split table into component
This commit is contained in:
13
app/components/layout.js
Normal file
13
app/components/layout.js
Normal file
@@ -0,0 +1,13 @@
|
||||
import Head from 'next/head'
|
||||
|
||||
export default function Layout({ children }) {
|
||||
return (
|
||||
<>
|
||||
<Head>
|
||||
<title>Warframe Center</title>
|
||||
<link rel="icon" href="/favicon.ico" />
|
||||
</Head>
|
||||
<main>{children}</main>
|
||||
</>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user