11 lines
203 B
TypeScript
11 lines
203 B
TypeScript
import LoginForm from '@/components/LoginForm';
|
|
import React, { useState } from 'react'
|
|
|
|
export default function LoginPage() {
|
|
return (
|
|
<div>
|
|
<LoginForm />
|
|
</div>
|
|
)
|
|
}
|