This will change all existing files to match Prettier formatting. The command used is `npm run format`.
9 lines
182 B
TypeScript
9 lines
182 B
TypeScript
import { withTheme } from "./withTheme";
|
|
import { VSCodeTheme } from "./theme";
|
|
|
|
export const decorators = [withTheme];
|
|
|
|
export const globals = {
|
|
vscodeTheme: VSCodeTheme.Dark,
|
|
};
|