mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-05-03 16:46:41 +07:00
login mechanism
This commit is contained in:
parent
6168841f78
commit
9528e7f699
27 changed files with 528 additions and 96 deletions
13
src/containers/LoginLayout/index.tsx
Normal file
13
src/containers/LoginLayout/index.tsx
Normal file
|
@ -0,0 +1,13 @@
|
|||
import * as React from 'react';
|
||||
import { LoginForm } from '$components/login/LoginForm';
|
||||
import { MainLayout } from "$containers/MainLayout";
|
||||
|
||||
const style = require('./style.scss');
|
||||
|
||||
export const LoginLayout: React.FunctionComponent<{}> = () => (
|
||||
<MainLayout>
|
||||
<div className="default_container">
|
||||
<LoginForm />
|
||||
</div>
|
||||
</MainLayout>
|
||||
);
|
Loading…
Add table
Add a link
Reference in a new issue