add a global for background as tom suggested

This commit is contained in:
Norbert de Langen 2022-10-22 23:27:29 +02:00
parent b969270332
commit b01b29e0ab
No known key found for this signature in database
GPG Key ID: FD0E78AF9A837762

View File

@ -1,9 +1,10 @@
import { withBackground } from './decorators/withBackground';
import { withGrid } from './decorators/withGrid';
import { PARAM_KEY } from './constants';
export const decorators = [withGrid, withBackground];
export const parameters = {
backgrounds: {
[PARAM_KEY]: {
grid: {
cellSize: 20,
opacity: 0.5,
@ -15,3 +16,7 @@ export const parameters = {
],
},
};
export const globals = {
[PARAM_KEY]: null as any,
};