mirror of
https://github.com/umami-software/umami.git
synced 2026-02-11 08:07:12 +01:00
13 lines
237 B
TypeScript
13 lines
237 B
TypeScript
'use client';
|
|
import LoginForm from './LoginForm';
|
|
import styles from './LoginPage.module.css';
|
|
|
|
export function LoginPage() {
|
|
return (
|
|
<div className={styles.page}>
|
|
<LoginForm />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default LoginPage;
|