mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-16 02:05:04 +01:00
12 lines
281 B
JavaScript
12 lines
281 B
JavaScript
import React from 'react';
|
|
import Layout from 'components/layout/Layout';
|
|
import LoginForm from 'components/forms/LoginForm';
|
|
|
|
export default function LoginPage() {
|
|
return (
|
|
<Layout title="login" header={false} footer={false} center>
|
|
<LoginForm />
|
|
</Layout>
|
|
);
|
|
}
|