Commit d7639ab3 authored by Kim, Chaerin's avatar Kim, Chaerin
Browse files

room header link추가

parent 4c1f8a9e
import { Link } from "react-router-dom";
const RoomHeader = () => { const RoomHeader = () => {
return ( return (
<div className="container"> <div className="container">
...@@ -25,19 +27,21 @@ const RoomHeader = () => { ...@@ -25,19 +27,21 @@ const RoomHeader = () => {
<p className="m-2" style={{ fontWeight: "bold", fontSize: "20px" }}> <p className="m-2" style={{ fontWeight: "bold", fontSize: "20px" }}>
회의 회의
</p> </p>
<button <Link to="/user">
type="button" <button
className="m-2 rounded" type="button"
style={{ className="m-2 rounded"
height: "30px", style={{
fontWeight: "bold", height: "30px",
backgroundColor: "#E8B7FF", fontWeight: "bold",
color: "black", backgroundColor: "#E8B7FF",
border: "1px #f4c1f2", color: "black",
}} border: "1px #f4c1f2",
> }}
돌아가기 >
</button> 돌아가기
</button>
</Link>
</div> </div>
</div> </div>
</div> </div>
......
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