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 (
|
2020-08-21 17:49:13 +02:00
|
|
|
<Page authPage>
|
2019-09-26 18:07:11 +02:00
|
|
|
<UserSignIn />
|
2019-08-27 16:43:42 +02:00
|
|
|
</Page>
|
|
|
|
);
|
|
|
|
}
|