import React from "react"
import Icon from "../Icon/Icon"
import { boolean, text, select } from "@storybook/addon-knobs"
import Text from "../Text/Text"
import PanelGroup from "./PanelGroup"
function ValidationComplete() {
return (
{'Complete '}
)
}
function ValidationIncomplete() {
return (
{'Not Complete '}
)
}
const userIcon = (
)
const largeUserIcon = (
)
const phoneIcon = (
)
const homeIcon = (
)
const dollarIcon = (
)
export default function PanelGroupStory(stories) {
stories.add("PanelGroup", () => {
const outerActivePanelOptions = {
["main-applicant"]: "Main Applicant",
["co-applicant"]: "Co-Applicant",
}
const innerActivePanelOptions = {
["application-info"]: "Application Info",
["contact-info"]: "Contact Information",
["income-sources"]: "Income Source",
["home-info"]: "Applicant Home Information",
}
const outerPanelGroupProps = {
activePanel: select("Active Outer Panel Group", outerActivePanelOptions, "main-applicant", "outer-active-panel")
}
const innerPanelGroupProps = {
activePanel: select("Active Inner Panel Group", innerActivePanelOptions, "", "outer-active-panel")
}
return (
Now you see me!
Now you see me!
Now you see me!
Now you see me!
Now you see me!
Now you see me!
Now you see me!
Now you see me!
)
})
}