├── .gitignore ├── README.md ├── package.json ├── public └── index.html ├── src ├── App.css ├── App.js ├── assets │ ├── images │ │ ├── afternoon.jpg │ │ ├── react_logo.png │ │ ├── sun_rise.png │ │ └── sunset.jpg │ └── styles │ │ └── styles.scss ├── components │ └── Header.js ├── index.css ├── index.js └── utils │ └── show_date_time.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/react-time-of-day/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # React App 2 | 3 | yarn start 4 | 5 | [DEMO](https://react-time-of-day.netlify.com/) -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/react-time-of-day/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/react-time-of-day/HEAD/public/index.html -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/react-time-of-day/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/react-time-of-day/HEAD/src/App.js -------------------------------------------------------------------------------- /src/assets/images/afternoon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/react-time-of-day/HEAD/src/assets/images/afternoon.jpg -------------------------------------------------------------------------------- /src/assets/images/react_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/react-time-of-day/HEAD/src/assets/images/react_logo.png -------------------------------------------------------------------------------- /src/assets/images/sun_rise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/react-time-of-day/HEAD/src/assets/images/sun_rise.png -------------------------------------------------------------------------------- /src/assets/images/sunset.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/react-time-of-day/HEAD/src/assets/images/sunset.jpg -------------------------------------------------------------------------------- /src/assets/styles/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/react-time-of-day/HEAD/src/assets/styles/styles.scss -------------------------------------------------------------------------------- /src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/react-time-of-day/HEAD/src/components/Header.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/react-time-of-day/HEAD/src/index.js -------------------------------------------------------------------------------- /src/utils/show_date_time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/react-time-of-day/HEAD/src/utils/show_date_time.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/react-time-of-day/HEAD/yarn.lock --------------------------------------------------------------------------------