mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 22:01:26 +08:00
16 lines
350 B
JavaScript
16 lines
350 B
JavaScript
import { addons } from '@storybook/addons';
|
|
import { create } from '@storybook/theming/create';
|
|
|
|
const theme = create({
|
|
base: 'light',
|
|
|
|
brandTitle: 'Storybook for Rax',
|
|
brandUrl: 'https://github.com/storybookjs/storybook/tree/master/examples/rax-kitchen-sink',
|
|
});
|
|
|
|
addons.setConfig({
|
|
showRoots: true,
|
|
panelPosition: 'bottom',
|
|
theme,
|
|
});
|