End.js 464 Bytes
Newer Older
1
2
import React from 'react'
// import { Link } from 'react-router-dom';
JeongYeonwoo's avatar
JeongYeonwoo committed
3
import tr from './img_end.jpg';
4
5
6
7
8
9
10
11
12


function End({history}) {
    return (
        <>
            <div>
                {/* <button onClick={() => history.push('/')}>홈 버튼!</button> */}
            </div>
            <div className="Box">
JeongYeonwoo's avatar
JeongYeonwoo committed
13
                <img src={tr} alt="수고"/>
14
15
16
17
18
19
20
                <h2>수고하셨습니다!</h2>
            </div>
        </>
    )
}

export default End;