mirror of
https://github.com/snachodog/tok-to-insta-follower-bridge.git
synced 2025-04-04 03:01:25 -06:00
29 lines
550 B
TypeScript
29 lines
550 B
TypeScript
import type { Preview } from "@storybook/react";
|
|
import "../src/style.content.css";
|
|
import messages from "../locales/en/messages.json";
|
|
|
|
const getMessage = (key: string, placeholders: string[]) => {
|
|
return messages[key].message
|
|
};
|
|
|
|
window.chrome = {
|
|
i18n: {
|
|
getMessage: getMessage,
|
|
} as typeof chrome.i18n,
|
|
} as typeof chrome;
|
|
|
|
const preview: Preview = {
|
|
parameters: {
|
|
controls: {
|
|
matchers: {
|
|
color: /(background|color)$/i,
|
|
date: /Date$/i,
|
|
},
|
|
},
|
|
},
|
|
|
|
tags: ["autodocs"],
|
|
};
|
|
|
|
export default preview;
|