mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-12-02 07:53:55 +03:00
16 lines
249 B
TypeScript
16 lines
249 B
TypeScript
|
import type { Preview } from '@storybook/svelte';
|
||
|
import '../src/styles/main.css';
|
||
|
|
||
|
const preview: Preview = {
|
||
|
parameters: {
|
||
|
controls: {
|
||
|
matchers: {
|
||
|
color: /(background|color)$/i,
|
||
|
date: /Date$/i
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
|
||
|
export default preview;
|