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 668e34b commit e38bd00Copy full SHA for e38bd00
.gitignore
@@ -5,5 +5,5 @@ build-storybook.log
5
.DS_Store
6
.env
7
.cache
8
-stories/stress-test
+stories/atoms/StressTest.stories.js
9
yarn-error.log
scripts/generate-dynamic-stories.js
@@ -1,6 +1,6 @@
1
const fs = require('fs');
2
3
-const storiesFolderPath = 'stories/stress-test';
+const storiesFolderPath = 'stories/atoms';
4
if (!fs.existsSync(storiesFolderPath)) {
fs.mkdirSync(storiesFolderPath);
@@ -11,7 +11,7 @@ const storyCount = Number(process.env.DYNAMIC_STORIES_COUNT) || 500;
11
let content = `
12
import React from 'react';
13
14
-import { Button } from '../basic/Button';
+import { Button } from './Button';
15
16
export default {
17
title: 'StressTest',
0 commit comments