time-convertor

Convert time across timezones
git clone http://git.hanabi.in/repos/time-convertor.git
Log | Files | Refs | README | LICENSE

commit d9bde53c9b4da2079ac755a4b93e53cb0f156245
parent 53ee67eb041195e548ef08c1f6f698d0b0f48141
Author: Agastya Chandrakant <me@hanabi.in>
Date:   Sun, 17 May 2020 22:03:20 +0530

change app.js

Diffstat:
Msrc/App.js | 9++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/src/App.js b/src/App.js @@ -1,8 +1,15 @@ import React from 'react'; import 'bootstrap/dist/css/bootstrap.css'; +import Header from './comp/header'; +import CurrentTime from './comp/currentTime'; function App() { - return <div className="container-fluid">Hello world</div>; + return ( + <div className="container-fluid"> + <Header /> + <CurrentTime /> + </div> + ); } export default App;