console: Add the OpenTelemetry banners in Storybook

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/7361
GitOrigin-RevId: 0a098000acf94b7957c67af6178d0b3d22ab46a6
This commit is contained in:
Stefano Magni 2022-12-23 10:54:13 +01:00 committed by hasura-bot
parent ee78e32c6e
commit 78936fd78b
3 changed files with 1194 additions and 0 deletions

View File

@ -0,0 +1,18 @@
import type { ComponentStory } from '@storybook/react';
import * as React from 'react';
import { HeroEnabled as HeroEnabledComponent } from './HeroEnabled';
import { HeroDisabled as HeroDisabledComponent } from './HeroDisabled';
export default {
title: 'Features/OpenTelemetryConfig/Hero',
};
// --------------------------------------------------
// STORY DEFINITION
// --------------------------------------------------
export const HeroEnabled: ComponentStory<typeof HeroEnabledComponent> = () => (
<HeroEnabledComponent />
);
export const HeroDisabled: ComponentStory<typeof HeroDisabledComponent> =
() => <HeroDisabledComponent />;

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long