mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
13 lines
315 B
TypeScript
13 lines
315 B
TypeScript
import { configure } from '@storybook/react';
|
|
|
|
import '../../../public/sass/grafana.light.scss';
|
|
|
|
// automatically import all files ending in *.stories.tsx
|
|
const req = require.context('../src/components', true, /.story.tsx$/);
|
|
|
|
function loadStories() {
|
|
req.keys().forEach(req);
|
|
}
|
|
|
|
configure(loadStories, module);
|