Files
vscode-codeql/extensions/ql-vscode/.storybook/vscode-theme-addon/preview.ts
Koen Vlaswinkel ebcdf8ad0b Run Prettier on all files
This will change all existing files to match Prettier formatting.

The command used is `npm run format`.
2022-11-16 19:06:13 +01:00

9 lines
182 B
TypeScript

import { withTheme } from "./withTheme";
import { VSCodeTheme } from "./theme";
export const decorators = [withTheme];
export const globals = {
vscodeTheme: VSCodeTheme.Dark,
};