23 lines
390 B
TypeScript
23 lines
390 B
TypeScript
import type { Preview } from "@storybook/react";
|
|
|
|
import "antd/dist/reset.css";
|
|
import "../src/react/video-player/tach-video-js.css";
|
|
import "./preview.css";
|
|
|
|
const preview: Preview = {
|
|
parameters: {
|
|
layout: "padded",
|
|
controls: {
|
|
expanded: true,
|
|
sort: "requiredFirst",
|
|
},
|
|
options: {
|
|
storySort: {
|
|
order: ["React", "Angular"],
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|
|
export default preview;
|