-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
상단 아이콘 추가
- Loading branch information
Showing
6 changed files
with
63 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
import Carousel from 'react-bootstrap/Carousel'; | ||
|
||
function UncontrolledExample() { | ||
return ( | ||
<Carousel> | ||
<Carousel.Item> | ||
<img | ||
className="d-block w-100" | ||
src="holder.js/800x400?text=First slide&bg=373940" | ||
alt="First slide" | ||
/> | ||
<Carousel.Caption> | ||
<h3>First slide label</h3> | ||
<p>Nulla vitae elit libero, a pharetra augue mollis interdum.</p> | ||
</Carousel.Caption> | ||
</Carousel.Item> | ||
<Carousel.Item> | ||
<img | ||
className="d-block w-100" | ||
src="holder.js/800x400?text=Second slide&bg=282c34" | ||
alt="Second slide" | ||
/> | ||
|
||
<Carousel.Caption> | ||
<h3>Second slide label</h3> | ||
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p> | ||
</Carousel.Caption> | ||
</Carousel.Item> | ||
<Carousel.Item> | ||
<img | ||
className="d-block w-100" | ||
src="holder.js/800x400?text=Third slide&bg=20232a" | ||
alt="Third slide" | ||
/> | ||
|
||
<Carousel.Caption> | ||
<h3>Third slide label</h3> | ||
<p> | ||
Praesent commodo cursus magna, vel scelerisque nisl consectetur. | ||
</p> | ||
</Carousel.Caption> | ||
</Carousel.Item> | ||
</Carousel> | ||
); | ||
} | ||
|
||
export default UncontrolledExample; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
img { | ||
padding : 20px | ||
} | ||
|
||
.graph{ | ||
float: right | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,15 @@ | ||
import React from 'react'; | ||
import "./TimerSetting.css"; | ||
|
||
const TimerSetting = () => { | ||
return ( | ||
<div> | ||
<> | ||
<h1>타이머 세팅페이지 입니다! (희수 작업)</h1> | ||
</> | ||
</div> | ||
); | ||
return ( | ||
<div> | ||
<div className="icons"> | ||
<img className="menubar" src={require("./pageimg/menubar.png")} /> | ||
<img className="graph" src={require("./pageimg/graph.png")} /> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default TimerSetting; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.