Commit 88f44dfc authored by 김민수's avatar 김민수
Browse files

수정1

parent 50fcae81
import React from 'react' import React from 'react'
// import tr from './End-Image01.jpg'; // import tr from './End-Image01.jpg';
import './End.css' // import './End.css'
import 'bootstrap' import 'bootstrap'
// import { Link } from 'react-router-dom'; // import { Link } from 'react-router-dom';
...@@ -30,30 +30,30 @@ function End() { ...@@ -30,30 +30,30 @@ function End() {
<div className="container"> <div className="container">
<h2>채점표</h2> <h2>채점표</h2>
<table className="table table-bordered"> <table className="table table-bordered" >
<thead> <thead>
<tr> <tr>
<th> </th> <th>이름</th>
<th>이름 여기</th> <th>{localStorage.getItem('name')}</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<tr> <tr>
<td>문제1 여기</td> <td>1</td>
<td>문제1 여기</td> <td> {localStorage.getItem('채점1')}</td>
</tr> </tr>
<tr> <tr>
<td>문제2 여기</td> <td>2</td>
<td>문제2 여기</td> <td>{localStorage.getItem('채점2')}</td>
</tr> </tr>
<tr> <tr>
<td>문제3 여기</td> <td>3</td>
<td>문제3 여기</td> <td> {localStorage.getItem('채점3')}</td>
</tr> </tr>
<tr> <tr>
<td>총점</td> <td>총점</td>
<td>총점 결과??</td> <td>{a[0] + a[1] + a[2]}</td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment