You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
636 B
29 lines
636 B
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;
|
|
|