mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-02-20 00:33:07 +01:00
* chore: remove redundant prettier, gitignore files * fix: Fix missign html opening tag * chore: upgrade prettier * chore(ci): Add prettier check to CI * chore(eslint): turn off prettier-eslint * chore: fix formatting of translations * chore: run prettier over whole codebase
21 lines
380 B
JavaScript
21 lines
380 B
JavaScript
import React from 'react';
|
|
import { StoryWrapper } from '../src/support/Story';
|
|
|
|
export const decorators = [
|
|
Story => (
|
|
<StoryWrapper>
|
|
<Story />
|
|
</StoryWrapper>
|
|
),
|
|
];
|
|
export const parameters = {
|
|
options: {
|
|
showPanel: true,
|
|
showInfo: true,
|
|
panelPosition: 'right',
|
|
},
|
|
theme: {
|
|
base: 'light',
|
|
},
|
|
};
|