Skip to content

Commit 877cd80

Browse files
committed
Initial commit
1 parent 9f24438 commit 877cd80

File tree

3 files changed

+37
-0
lines changed

3 files changed

+37
-0
lines changed

.gitignore

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
.vscode/*
2+
!.vscode/settings.json
3+
!.vscode/tasks.json
4+
!.vscode/launch.json
5+
!.vscode/extensions.json
6+
*.code-workspace
7+
8+
# Local History for Visual Studio Code
9+
.history/
10+
11+
.DS_Store
12+
.idea

index.js

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export default () => {}

package.json

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"name": "use-react-form",
3+
"version": "0.0.1",
4+
"description": "React forms on steroids. Flexible and performant form library using React Hooks API",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"keywords": [
10+
"react",
11+
"forms",
12+
"hooks"
13+
],
14+
"repository": {
15+
"type": "git",
16+
"url": "git+https://github.com/powah/use-react-form.git"
17+
},
18+
"author": "Aurimas Likas",
19+
"license": "MIT",
20+
"bugs": {
21+
"url": "https://github.com/powah/use-react-form/issues"
22+
},
23+
"homepage": "https://github.com/powah/use-react-form#readme"
24+
}

0 commit comments

Comments
 (0)