12 lines
301 B
JavaScript
12 lines
301 B
JavaScript
import { configure } from '@storybook/react';
|
|
import { setOptions } from '@storybook/addon-options';
|
|
|
|
setOptions({
|
|
name: 'Contribute on GitHub',
|
|
url: 'https://github.com/missive/emoji-mart',
|
|
downPanelInRight: true,
|
|
sidebarAnimations: false,
|
|
})
|
|
|
|
configure(() => require('../stories'), module);
|