mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-02-12 11:12:07 +00:00
22 lines
433 B
TypeScript
22 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;
|