2020-11-18 16:18:32 +00:00
|
|
|
import React from "react";
|
|
|
|
import { Meta } from "@storybook/react";
|
|
|
|
import { Page } from "@patternfly/react-core";
|
|
|
|
import { UserFederationKerberosWizard } from "../user-federation/UserFederationKerberosWizard";
|
|
|
|
|
|
|
|
export default {
|
2020-12-15 22:50:09 +00:00
|
|
|
title: "User Federation Kerberos Wizard",
|
2020-11-18 16:18:32 +00:00
|
|
|
component: UserFederationKerberosWizard,
|
|
|
|
} as Meta;
|
|
|
|
|
|
|
|
export const view = () => {
|
|
|
|
return (
|
|
|
|
<Page>
|
|
|
|
<UserFederationKerberosWizard />
|
|
|
|
</Page>
|
|
|
|
);
|
|
|
|
};
|