Admin.js 1.05 KB
Newer Older
baesangjune's avatar
baesangjune committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import React from 'react';
// import { Link } from 'react-router-dom';

function Admin() {
    return (
        <>
            <div>
                <div className="container">
                    <div className="row d-flex justify-content-center">
                        <div className="col-8">
                            <div>
                                <h2>문제를 입력하세요</h2>
                                <input type="text" /><button>전송</button>
                            </div>
                            <div>
                                <h2>보기를 입력하세요</h2>
                                <input type="text" /><button>전송</button>
                            </div>
                            <div>
                                <h2>답을 입력하세요</h2>
                                <input type="text" /><button>전송</button>
                            </div>
                        </div>
                    </div>
                </div>

            </div>
        </>
    )
}

export default Admin