Skip to content

Commit 05d39a9

Browse files
committed
Add Th as a prop to Reactable
Didn't do this as part of glittershark#184
1 parent 4979df9 commit 05d39a9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/reactable.jsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import React from 'react';
22
import { Table } from './reactable/table';
33
import { Tr } from './reactable/tr';
44
import { Td } from './reactable/td';
5+
import { Th } from './reactable/th';
56
import { Tfoot } from './reactable/tfoot';
67
import { Thead } from './reactable/thead';
78
import { Sort } from './reactable/sort';
@@ -41,7 +42,7 @@ if (!Array.prototype.find) {
4142
});
4243
}
4344

44-
const Reactable = { Table, Tr, Td, Tfoot, Thead, Sort, unsafe };
45+
const Reactable = { Table, Tr, Td, Th, Tfoot, Thead, Sort, unsafe };
4546

4647
export default Reactable;
4748

0 commit comments

Comments
 (0)