JaeHyeok Song

apply lineQR in page

import React from 'react';
const LineQR = () => {
return (
<div>
<img
src="https://qr-official.line.me/sid/L/215xiena.png"
width="130"
/>
</div>
);
};
export default LineQR
\ No newline at end of file
......@@ -8,7 +8,7 @@ import Paper from '@material-ui/core/Paper';
import Grid from '@material-ui/core/Grid';
import CircularProgress from '@material-ui/core/CircularProgress';
import styled from 'styled-components';
import KakaoLoginBtn from './KakaoLogin'
import LineQR from './LineQR'
const useStyles = makeStyles((theme) => ({
root: {
......@@ -84,11 +84,8 @@ const SettingForm = ({
<Grid container item xs={6}>
<Paper className={classes.paper} elevation={3}>
<h1>카카오 로그인</h1>
<KakaoLoginBtn
profile={profile}
onChange={onChange}
/>
<h1>QR코드를 찍어주세요</h1>
<LineQR></LineQR>
</Paper>
</Grid>
......