mirror of
https://github.com/BradNut/umami
synced 2025-09-08 17:40:29 +00:00
11 lines
219 B
JavaScript
11 lines
219 B
JavaScript
import React from 'react';
|
|
import Layout from 'components/Layout';
|
|
import Login from 'components/Login';
|
|
|
|
export default function LoginPage() {
|
|
return (
|
|
<Layout title="login">
|
|
<Login />
|
|
</Layout>
|
|
);
|
|
}
|