Skip to content

Commit 4d7bd62

Browse files
committed
updates on date and readme file
1 parent c467678 commit 4d7bd62

File tree

2 files changed

+42
-38
lines changed

2 files changed

+42
-38
lines changed

README.md

+41-37
Original file line numberDiff line numberDiff line change
@@ -1,68 +1,72 @@
1-
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
1+
# Chitrakala - Ticket Booking React app
22

3-
## Available Scripts
3+
> A react ticket booking application which let users to book ticket based on date, location and time at there ease.
44
5-
In the project directory, you can run:
65

7-
### `npm start`
6+
## Built With
87

9-
Runs the app in the development mode.<br />
10-
Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
8+
- React js
9+
- Styled Components
1110

12-
The page will reload if you make edits.<br />
13-
You will also see any lint errors in the console.
11+
## Getting Started
1412

15-
### `npm test`
13+
**Just fork it and fell free to use it.**
1614

17-
Launches the test runner in the interactive watch mode.<br />
18-
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
15+
To get a local copy up and running follow these simple example steps.
1916

20-
### `npm run build`
17+
### Prerequisites
2118

22-
Builds the app for production to the `build` folder.<br />
23-
It correctly bundles React in production mode and optimizes the build for the best performance.
19+
1 Install Node js in your local system
20+
2 Code Editor
21+
3 Browser (optional)
2422

25-
The build is minified and the filenames include the hashes.<br />
26-
Your app is ready to be deployed!
2723

28-
See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
24+
### Install
2925

30-
### `npm run eject`
26+
After making a clone of this repo open your cmd/terminal and use
3127

32-
**Note: this is a one-way operation. Once you `eject`, you can’t go back!**
28+
`npm install` (this will install all the dependencies )
3329

34-
If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
30+
### Starting app
3531

36-
Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.
32+
Once everything has been installed, go to root folder. In the terminal type:
3733

38-
You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.
34+
`npm start` (this will open localhost and start the app)
3935

40-
## Learn More
36+
## Authors
4137

42-
You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
4338

44-
To learn React, check out the [React documentation](https://reactjs.org/).
39+
👤 **Arjun K Prasad**
4540

46-
### Code Splitting
41+
- Github: [@arjun1237](https://github.com/arjun1237/)
42+
- Hackerrank: [@arjun1237](https://www.hackerrank.com/arjun1237)
43+
- Linkedin: [@arjun1237](https://www.linkedin.com/in/arjun1237/)
44+
4745

48-
This section has moved here: https://facebook.github.io/create-react-app/docs/code-splitting
46+
👤 **Keshav Mahawar**
4947

50-
### Analyzing the Bundle Size
48+
- Github: [@KeshavMahawar](https://github.com/KeshavMahawar)
49+
- Twitter: [@kesmahawar](https://twitter.com/kesmahawar)
50+
- Linkedin: [Keshav Mahawar](https://www.linkedin.com/in/keshav-m-191a8b131)
51+
5152

52-
This section has moved here: https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size
5353

54-
### Making a Progressive Web App
54+
## 🤝 Contributing
5555

56-
This section has moved here: https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app
56+
Contributions, issues and feature requests are welcome!
5757

58-
### Advanced Configuration
58+
Feel free to check the [issues page](https://github.com/arjun1237/Chitrakala/issues).
5959

60-
This section has moved here: https://facebook.github.io/create-react-app/docs/advanced-configuration
60+
## Show your support
6161

62-
### Deployment
62+
Give a ⭐️ if you like this project!
6363

64-
This section has moved here: https://facebook.github.io/create-react-app/docs/deployment
64+
## Acknowledgments
6565

66-
### `npm run build` fails to minify
66+
- Implemented Context Api and and basic concepts of react to build this application
67+
- Used local storage to store the data
68+
- Used GeoLocation Api to get user location
6769

68-
This section has moved here: https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify
70+
## 📝 License
71+
72+
This project is [MIT](./LICENSE) licensed.

src/components/Booking/DateTimeSelection.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export default class DateTimeSelection extends Component {
1818
};
1919

2020
getNext5days = () => {
21-
let date = new Date();
21+
let date = new Date(1600157191564);
2222
let res = [];
2323
for (let i = 0; i < 5; i++) {
2424
let temp = new Date(date.setDate(date.getDate() + 1));

0 commit comments

Comments
 (0)