Skip to content

Instantly share code, notes, and snippets.

@lizzymendivil
Created September 18, 2018 00:27
Show Gist options
  • Save lizzymendivil/1f9ab48a94457ecee6a27b39483d7c6d to your computer and use it in GitHub Desktop.
Save lizzymendivil/1f9ab48a94457ecee6a27b39483d7c6d to your computer and use it in GitHub Desktop.
import { FormattedMessage } from 'react-intl';
.
.
.
<Grid container={true} alignItems='center'>
<Grid item={true} xs={6}>
<FormControlLabel
classes={{root: this.props.classes.rememberText}}
control={<Checkbox color='primary' />}
label={<FormattedMessage id="sign.in.remember.me" />}
/>
</Grid>
<Grid classes={{item: this.props.classes.forgotLink}} item={true} xs={6}>
<Link to=''>
<FormattedMessage id="sign.in.forgot.password" />
</Link>
</Grid>
</Grid>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment