Skip to content

Commit

Permalink
feat(project setup): initial setup of the project
Browse files Browse the repository at this point in the history
  • Loading branch information
hagmic committed May 29, 2019
1 parent 42a3909 commit 20d0d15
Show file tree
Hide file tree
Showing 12 changed files with 1,223 additions and 24 deletions.
3 changes: 0 additions & 3 deletions .babelrc

This file was deleted.

2 changes: 2 additions & 0 deletions .storybook/addons.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import '@storybook/addon-actions/register';
import '@storybook/addon-links/register';
9 changes: 9 additions & 0 deletions .storybook/config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import { configure } from '@storybook/react';

// automatically import all files ending in *.stories.js
const req = require.context('../stories', true, /\.stories\.js$/);
function loadStories() {
req.keys().forEach(filename => req(filename));
}

configure(loadStories, module);
6 changes: 6 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"presets": ["@babel/preset-react"],
"plugins": [
["react-remove-properties", { "properties": ["data-testid" ]}]
]
}
Loading

0 comments on commit 20d0d15

Please sign in to comment.