End.js 387 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import React from 'react'
// import { Link } from 'react-router-dom';


function End({history}) {
    return (
        <>
            <div>
                {/* <button onClick={() => history.push('/')}>홈 버튼!</button> */}
            </div>
            <div className="Box">
                <h2>수고하셨습니다!</h2>
            </div>
        </>
    )
}

export default End;