react-hrnet-table-gandrica 1.0.2 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -31,11 +31,11 @@ npm install react-hrnet-table-gandrica
|
|
|
31
31
|
|
|
32
32
|
1. Import the Component and its CSS:JavaScript
|
|
33
33
|
2. import { Table } from 'react-hrnet-table-gandrica';
|
|
34
|
-
3. import
|
|
34
|
+
3. import "react-hrnet-table-gandrica/style.css"; // Don't forget the styles!
|
|
35
35
|
4. Pass the list and tableHeaders props:JavaScript
|
|
36
36
|
5. import React from 'react';
|
|
37
|
-
import { Table } from 'react-hrnet-table-
|
|
38
|
-
import 'react-hrnet-table-
|
|
37
|
+
import { Table } from 'react-hrnet-table-gandrica';
|
|
38
|
+
import 'react-hrnet-table-gandrica/style.css';
|
|
39
39
|
|
|
40
40
|
export default function EmployeeList() {
|
|
41
41
|
// 1. The data array
|