@udus/notion-renderer
Version:

31 lines (30 loc) • 634 B
JavaScript
import VideoExternalObject from "./Video.External.json";
import VideoFileObject from "./Video.File.json";
import { Video } from "./Video.js";
import VideoYouTubeObject from "./Video.YouTube.json";
const meta = {
title: "Blocks/Video",
component: Video,
tags: ["autodocs"],
};
export default meta;
export const Default = {
args: {
block: VideoExternalObject,
},
};
export const External = {
args: {
block: VideoExternalObject,
},
};
export const File = {
args: {
block: VideoFileObject,
},
};
export const YouTube = {
args: {
block: VideoYouTubeObject,
},
};