Created
February 15, 2018 22:28
-
-
Save tomswales/43fd1d69a1c38081a0c9a09420b67e1a to your computer and use it in GitHub Desktop.
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
// Returns the basic layout of the clock | |
return ( | |
<div className="clock"> | |
<NumeralPair value={convertedHours}/> | |
<Spacer/> | |
<NumeralPair value={this.state.date.getMinutes()}/> | |
<Spacer/> | |
<NumeralPair value={this.state.date.getSeconds()}/> | |
<TimeSetting timePeriod={timePeriod} timeSetting={this.state.timeSetting} toggle={this.toggleTimeSetting}/> | |
</div> | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment