12 lines
229 B
JavaScript
12 lines
229 B
JavaScript
// @flow
|
|
import React from 'react';
|
|
import UserSignIn from 'component/userSignIn';
|
|
import Page from 'component/page';
|
|
|
|
export default function SignInPage() {
|
|
return (
|
|
<Page authPage>
|
|
<UserSignIn />
|
|
</Page>
|
|
);
|
|
}
|