time-convertor

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

commit 53ee67eb041195e548ef08c1f6f698d0b0f48141
parent 68c26873173b6e50ee569d415c79f935638e43d6
Author: Agastya Chandrakant <me@hanabi.in>
Date:   Sun, 17 May 2020 22:02:56 +0530

header update

Diffstat:
Asrc/comp/header.js | 14++++++++++++++
1 file changed, 14 insertions(+), 0 deletions(-)

diff --git a/src/comp/header.js b/src/comp/header.js @@ -0,0 +1,14 @@ +import React from 'react'; + +function Header() { + return ( + <header className="mb-5"> + <div className="page-header mt-3"> + <h1>time convertor</h1> + <hr /> + </div> + </header> + ); +} + +export default Header;