mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
384c987389
* clean up routes and useless components * component clean up * removed redux from routes * rename file * moved useDeepEffect hook with others * removed redux, fleet, app_constants dirs; added types to utilities * style cleanup * typo fix * removed unused ts-ignore comments * removed redux packages!!! * formatting * fixed typing for simple search function * updated frontend readme
21 lines
452 B
TypeScript
21 lines
452 B
TypeScript
import React from "react";
|
|
import { Meta, Story } from "@storybook/react";
|
|
|
|
import InfoBanner from ".";
|
|
import { IInfoBannerProps } from "./InfoBanner";
|
|
|
|
import "../../index.scss";
|
|
|
|
export default {
|
|
component: InfoBanner,
|
|
title: "Components/InfoBanner",
|
|
} as Meta;
|
|
|
|
const Template: Story<IInfoBannerProps> = (props) => (
|
|
<InfoBanner {...props}>
|
|
<div>This is an Info Banner.</div>
|
|
</InfoBanner>
|
|
);
|
|
|
|
export const Default = Template.bind({});
|