mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 06:11:11 +08:00
12 lines
247 B
Plaintext
12 lines
247 B
Plaintext
```ts
|
|
// .storybook/YourTheme.js
|
|
|
|
import { create } from '@storybook/theming';
|
|
|
|
export default create({
|
|
base: 'light',
|
|
brandTitle: 'My custom storybook',
|
|
brandUrl: 'https://example.com',
|
|
brandImage: 'https://place-hold.it/350x150',
|
|
});
|
|
``` |