Skip to content

Commit 1a7bc4c

Browse files
committed
fixes
1 parent 9753a27 commit 1a7bc4c

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

index.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
export * from './src/components/Table';
2-
export * from './src/components/Cell';
3-
export * from './src/components/Row';
1+
export { default as Table, ColumnProps } from './src/components/Table';
2+
export { default as Cell } from './src/components/Cell';
3+
export { default as Row } from './src/components/Row';

package.json

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-awesome-table",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "React-Native Simple Data Tables",
55
"homepage": "https://github.com/garrylachman/react-native-awesome-table",
66
"keywords": ["react", "react-native", "react tables", "react-native tables", "data tables", "table"],
@@ -15,14 +15,16 @@
1515
"type": "git",
1616
"url": "https://github.com/garrylachman/react-native-awesome-table.git"
1717
},
18-
"dependencies": {
18+
"peerDependencies": {
19+
"react": "*",
20+
"react-native": "*"
21+
},
22+
"devDependencies": {
1923
"@types/react": "^17.0.9",
2024
"@types/react-native": "^0.64.8",
2125
"react": "^17.0.2",
2226
"react-native": "^0.64.1",
23-
"react-native-web": "^0.16.3"
24-
},
25-
"devDependencies": {
27+
"react-native-web": "^0.16.3",
2628
"@storybook/addon-controls": "^6.2.9",
2729
"@storybook/addon-docs": "^6.2.9",
2830
"@storybook/addon-knobs": "^6.2.9",

0 commit comments

Comments
 (0)