parent
5f1d6a8f09
commit
da234b02e1
2 changed files with 0 additions and 58 deletions
@ -1,29 +0,0 @@ |
|||||||
import Head from 'next/head'; |
|
||||||
import { FC } from 'react'; |
|
||||||
|
|
||||||
import Header from '../../components/Header'; |
|
||||||
import Grid from '../../components/Grid'; |
|
||||||
import PrepareHostForm from '../../components/PrepareHostForm'; |
|
||||||
|
|
||||||
const PrepareHost: FC = () => ( |
|
||||||
<> |
|
||||||
<Head> |
|
||||||
<title>Prepare Host</title> |
|
||||||
</Head> |
|
||||||
<Header /> |
|
||||||
<Grid |
|
||||||
columns={{ xs: 1, sm: 6, md: 4 }} |
|
||||||
layout={{ |
|
||||||
'preparehost-left-column': { sm: 1, xs: 0 }, |
|
||||||
'preparehost-center-column': { |
|
||||||
children: <PrepareHostForm />, |
|
||||||
md: 2, |
|
||||||
sm: 4, |
|
||||||
xs: 1, |
|
||||||
}, |
|
||||||
}} |
|
||||||
/> |
|
||||||
</> |
|
||||||
); |
|
||||||
|
|
||||||
export default PrepareHost; |
|
@ -1,29 +0,0 @@ |
|||||||
import Head from 'next/head'; |
|
||||||
import { FC } from 'react'; |
|
||||||
|
|
||||||
import Grid from '../../components/Grid'; |
|
||||||
import Header from '../../components/Header'; |
|
||||||
import PrepareNetworkForm from '../../components/PrepareNetworkForm'; |
|
||||||
|
|
||||||
const PrepareNetwork: FC = () => ( |
|
||||||
<> |
|
||||||
<Head> |
|
||||||
<title>Prepare Network</title> |
|
||||||
</Head> |
|
||||||
<Header /> |
|
||||||
<Grid |
|
||||||
columns={{ xs: 1, sm: 6, md: 4 }} |
|
||||||
layout={{ |
|
||||||
'preparehost-left-column': { sm: 1, xs: 0 }, |
|
||||||
'preparehost-center-column': { |
|
||||||
children: <PrepareNetworkForm />, |
|
||||||
md: 2, |
|
||||||
sm: 4, |
|
||||||
xs: 1, |
|
||||||
}, |
|
||||||
}} |
|
||||||
/> |
|
||||||
</> |
|
||||||
); |
|
||||||
|
|
||||||
export default PrepareNetwork; |
|
Loading…
Reference in new issue