Skip to content

Commit 8f43e5d

Browse files
author
Dmitrii Belousov
committed
Finalized code for customers table; updated readme; added some comments in the code; added styling
1 parent 93f0e8b commit 8f43e5d

File tree

10 files changed

+1996
-34
lines changed

10 files changed

+1996
-34
lines changed

README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,18 @@
11
### How to get started?
22

3-
1. Run
4-
```
3+
1. Install dependencies frontend app needs to run. Run:
4+
```bash
55
npm install
66
```
77

88
Note that you might need sudo permissions for that.
99

10-
2. Run
10+
2. Start backend. Run:
11+
```bash
12+
npm run start-json-server
1113
```
14+
15+
4. Start frontend. Run:
16+
```bash
1217
npm run start
1318
```

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8">
5-
<title>Awesome CRM</title>
5+
<title>Customers</title>
66
<link rel="stylesheet" href="styles.css">
77
</head>
88
<body>
99
<div>
10-
<h1>Hello my awesome CRM!</h1>
10+
<h1>My Customers</h1>
1111
<script type="text/javascript" src="dist/bundle.js"></script>
1212
</div>
1313
</body>

0 commit comments

Comments
 (0)