import * as React from "react";
import { GRP } from "storybook/GRP";
import { withKnobs, text, boolean, number } from "@storybook/addon-knobs";
import { QuizLayouts } from "./types";
import Layout from "../Layout";
export default {
title: "Plugins|Web Layouts/Quiz",
decorators: [withKnobs],
};
export const Quiz01: React.FC = () => {
return (
<>
{boolean("Show Section", false) && (
)}
{boolean("Show inspiration", false) && (
)}
>
);
};
export const Quiz02: React.FC = () => {
return (
<>
{boolean("Show Section", false) && (
)}
{boolean("Show inspiration", false) && (
)}
>
);
};
export const AllLayouts: React.FC = () => {
const data = {
section: {
pageMargin: number("Page Margin", 980, {
range: true,
min: 500,
max: 2000,
}),
},
main_headline: {
html: text("Main Headline Text", "I have overrided the text"),
render: boolean("Show Main Headline", true),
},
sub_headline: {
render: boolean("Show Sub Headline", true),
},
hero_video: {
render: boolean("Show Hero Video", true),
},
cta_button: {
render: boolean("Show Button (If Present)", true),
},
};
return (
);
};