Skip to content

Commit cea15f2

Browse files
committed
readme updated
1 parent 2e2ff30 commit cea15f2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## React sortable table ([View Demo](https://react-sortable-table.herokuapp.com/))
1+
## React sortable table ([View Demo](https://react-sortable-table2.herokuapp.com/))
22

33
### Clone this project
44

src/components/RenderAnotherTable.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import Table from "./Table";
2-
import tableData1 from "../tableData2.json";
2+
import tableData2 from "../tableData2.json";
33

44
const columns = [
55
{ label: "Name", accessor: "name", sortable: true },
@@ -13,7 +13,7 @@ const RenderAnotherTable = () => {
1313
<>
1414
<Table
1515
caption="List of developers with an affordable course (has no default sorting)."
16-
data={tableData1}
16+
data={tableData2}
1717
columns={columns}
1818
/>
1919
</>

0 commit comments

Comments
 (0)