Skip to content

Instantly share code, notes, and snippets.

@junu126
Created July 19, 2018 07:29
Show Gist options
  • Select an option

  • Save junu126/2f1292c533f076f6344f252d0e2edc2b to your computer and use it in GitHub Desktop.

Select an option

Save junu126/2f1292c533f076f6344f252d0e2edc2b to your computer and use it in GitHub Desktop.
Dusty프로젝트 - 컴포넌트 -time
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