Skip to content

Commit 873ec92

Browse files
angeloocanawcjordan
authored andcommitted
Remove data property from Table example (schrodinger#348)
I copied the first table example that has the data property and Typescript is complain that this data property does not exists. I looked the other examples and no one is using the data property.
1 parent 3c12a75 commit 873ec92

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Add the default stylesheet `dist/fixed-data-table.css` using a link tag or impor
3838

3939
Implementing a table involves three component types- `<Table/>`,`<Column/>`, and `<Cell/>`.
4040

41-
`<Table />` contains configuration information for the entire table, like dimensions and row count. It's also where you pass down the data to be rendered in the table.
41+
`<Table />` contains configuration information for the entire table, like dimensions and row count.
4242

4343
```javascript
4444

@@ -50,7 +50,6 @@ Implementing a table involves three component types- `<Table/>`,`<Column/>`, and
5050
width={5000}
5151
height={5050}
5252
headerHeight={50}
53-
data={rows}>
5453
...
5554
</Table>
5655
```

0 commit comments

Comments
 (0)