Manuel Bustillo
c01135257d
All checks were successful
Add copyright notice / copyright_notice (pull_request) Successful in 59s
Playwright Tests / test (pull_request) Successful in 3m57s
Build Nginx-based docker image / build-static-assets (pull_request) Successful in 5m19s
Check usage of free licenses / build-static-assets (pull_request) Successful in 15s
15 lines
239 B
TypeScript
15 lines
239 B
TypeScript
import type { Preview } from "@storybook/react";
|
|
|
|
const preview: Preview = {
|
|
parameters: {
|
|
controls: {
|
|
matchers: {
|
|
color: /(background|color)$/i,
|
|
date: /Date$/i,
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|
|
export default preview;
|