2019-08-27 16:43:42 +02:00
|
|
|
// @flow
|
|
|
|
import React from 'react';
|
|
|
|
import UserSignIn from 'component/userSignIn';
|
|
|
|
import Page from 'component/page';
|
|
|
|
|
2019-09-26 18:07:11 +02:00
|
|
|
export default function SignInPage() {
|
2019-08-27 16:43:42 +02:00
|
|
|
return (
|
2019-10-28 15:04:37 +01:00
|
|
|
<Page authPage className="main--auth-page">
|
2019-09-26 18:07:11 +02:00
|
|
|
<UserSignIn />
|
2019-08-27 16:43:42 +02:00
|
|
|
</Page>
|
|
|
|
);
|
|
|
|
}
|