Skip to content

Commit 2ca0a17

Browse files
committed
First Working Commit
0 parents  commit 2ca0a17

23 files changed

Lines changed: 15028 additions & 0 deletions

.gitignore

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# See https://help.github.com/ignore-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
6+
# testing
7+
/coverage
8+
9+
# production
10+
/build
11+
12+
# misc
13+
.DS_Store
14+
.env.local
15+
.env.development.local
16+
.env.test.local
17+
.env.production.local
18+
.idea
19+
.out
20+
npm-debug.log*
21+
yarn-debug.log*
22+
yarn-error.log*

.storybook/addons.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
import '@storybook/addon-actions/register';
2+
import '@storybook/addon-links/register';

.storybook/config.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import {configure} from '@storybook/react';
2+
3+
function loadStories() {
4+
require('../src/stories');
5+
}
6+
7+
configure(loadStories, module);

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
2+
Bindings for using [Formik](https://github.com/jaredpalmer/formik) with [Reactstrap](https://reactstrap.github.io/).
3+
4+
## Getting Started
5+
6+
npm install formik-material-ui
7+
8+
## Development
9+
10+
npm install
11+
npm run storybook
12+
13+
[Demo]()

0 commit comments

Comments
 (0)