forked from github/plane
88a35efa06
* chore: shifted index page to /home route * chore: added rewrite logic, to rewrite index to /home * chore: routed home to login route as login page * chore: updated nginx config to route to login * chore: updated path for home
8 lines
154 B
TypeScript
8 lines
154 B
TypeScript
import React from "react";
|
|
|
|
// components
|
|
import { LoginView } from "components/views";
|
|
|
|
const LoginPage = () => <LoginView />;
|
|
|
|
export default LoginPage; |