Created
July 19, 2018 07:29
-
-
Save junu126/2f1292c533f076f6344f252d0e2edc2b to your computer and use it in GitHub Desktop.
Dusty프로젝트 - 컴포넌트 -time
This file contains hidden or 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
| import React from 'react'; | |
| import './Dustytime.css' | |
| const Dustytime = ({time, day}) => { | |
| return ( | |
| <div className="clock"> | |
| <span className="time"> | |
| <span className="fuck">:</span> | |
| {time} | |
| </span> | |
| <span className="day"> | |
| {day} | |
| </span> | |
| </div> | |
| ); | |
| } | |
| export default Dustytime; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment