mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-02-14 20:22:10 +00:00
23 lines
433 B
TypeScript
23 lines
433 B
TypeScript
|
import type { Preview } from "@storybook/react";
|
||
|
|
||
|
import "@fontsource/noto-sans/400.css";
|
||
|
import "@fontsource/noto-sans/500.css";
|
||
|
import "@fontsource/noto-sans/700.css";
|
||
|
|
||
|
import "react-loading-skeleton/dist/skeleton.css";
|
||
|
|
||
|
import "./app.css";
|
||
|
|
||
|
const preview: Preview = {
|
||
|
parameters: {
|
||
|
controls: {
|
||
|
matchers: {
|
||
|
color: /(background|color)$/i,
|
||
|
date: /Date$/i,
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
};
|
||
|
|
||
|
export default preview;
|