Toggle navigation
Toggle navigation
This project
Loading...
Sign in
김건희
/
OSSW_Weather_Briefing
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
손수민
2022-05-30 18:32:49 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
f02d3e8aeed03b26af547ded8b3f6c347e03a2db
f02d3e8a
1 parent
7352bf45
[UPDATE] MainPage Files
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 additions
and
1 deletions
weather_briefing/package-lock.json
weather_briefing/src/component/views/MainPage/MainPage.js
weather_briefing/package-lock.json
View file @
f02d3e8
This diff could not be displayed because it is too large.
weather_briefing/src/component/views/MainPage/MainPage.js
View file @
f02d3e8
...
...
@@ -34,7 +34,7 @@ function MainPage(props) {
const
hours
=
String
(
date
.
getHours
()).
padStart
(
2
,
"0"
);
const
minutes
=
String
(
date
.
getMinutes
()).
padStart
(
2
,
"0"
);
const
seconds
=
String
(
date
.
getSeconds
()).
padStart
(
2
,
"0"
);
setTime
(
"${hours}:${minutes}:${seconds}"
);
setTime
(
hours
+
":"
+
minutes
+
":"
+
seconds
);
}
const
startTimer
=
()
=>
{
...
...
Please
register
or
login
to post a comment