Sha256: c37ce6df21fcdb9ca06375b9ae97b32d6aef52a20efdac17895e14b0d22c95af

Contents?: true

Size: 404 Bytes

Versions: 6

Compression:

Stored size: 404 Bytes

Contents

import { styled } from '@mui/system'
import LoginForm from './components/login-form'

const SignIn = () => {
  const LayoutLogin = styled('div')({
    width: '100%',
    height: '100%',
    maxWidth: '31.25rem',
    padding: '1rem',
    margin: '0 auto',
    display: 'flex',
    alignItems: 'center'
  })

  return (
    <LayoutLogin>
      <LoginForm />
    </LayoutLogin>
  )
}

export default SignIn

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
flamerb-0.3.0 templates/frontend/pages/sign-in/index.jsx
flamerb-0.2.3 templates/frontend/pages/sign-in/index.jsx
flamerb-0.2.0 templates/frontend/pages/sign-in/index.jsx
flamerb-0.1.3 templates/frontend/pages/sign-in/index.jsx
flamerb-0.1.2 templates/frontend/pages/sign-in/index.jsx
flamerb-0.1.1 templates/frontend/pages/sign-in/index.jsx