2021-07-03 17:37:30 +03:00
|
|
|
import React from 'react';
|
2021-08-09 15:10:12 +03:00
|
|
|
import { WithLogout } from '../hoc/withLogout';
|
2021-07-03 17:37:30 +03:00
|
|
|
import Form from '../components/Form/Form';
|
|
|
|
|
2021-08-09 15:10:12 +03:00
|
|
|
const FormPage = () => <WithLogout><Form /></WithLogout>;
|
2021-07-03 17:37:30 +03:00
|
|
|
|
|
|
|
export default FormPage;
|