We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 365b3dd commit 879eb44Copy full SHA for 879eb44
.npmignore
@@ -1,6 +1,7 @@
1
examples
2
flow-typed
3
node_modules
4
+src
5
.circleci
6
.github
7
coverage
@@ -9,4 +10,4 @@ coverage
9
10
.flowconfig
11
.eslintignore
12
CODE_OF_CONDUCT.md
-README.md
13
+README.md
index.ts
package.json
@@ -9,7 +9,7 @@
"lint": "eslint --cache ./src",
"tslint": "tslint -p .",
"type-check": "tsc --noEmit",
- "prepublishOnly": "tsc -p . --outDir dist/"
+ "prepublishOnly": "tsc -p ./ --outDir dist/"
},
14
"repository": {
15
"type": "git",
src/index.ts
@@ -0,0 +1,6 @@
+import NestedListView from './NestedListView'
+import NestedRow from './NestedRow'
+
+export {NestedRow}
+export default NestedListView
0 commit comments