Skip to content

Commit

Permalink
feat(loginpage): add LoginPage wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagozulato committed May 8, 2022
1 parent b1c4ab4 commit b058315
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/Pages/Login/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import React, { PropsWithChildren } from 'react'

const Login = ({ children }: PropsWithChildren<unknown>) => {
return (
<div className="login-container">
<div className="login__title">
<div className="login__content">
<div className="login__actions"></div>
</div>
</div>
</div>
)
}

export default Login

0 comments on commit b058315

Please sign in to comment.