forked from github/plane
9 lines
155 B
TypeScript
9 lines
155 B
TypeScript
import React from "react";
|
|
|
|
// components
|
|
import { LoginView } from "components/views";
|
|
|
|
const LoginPage = () => <LoginView />;
|
|
|
|
export default LoginPage;
|