fleet/frontend/components/LastUpdatedText/LastUpdatedText.stories.tsx

24 lines
471 B
TypeScript
Raw Normal View History

2023-05-03 16:51:33 +00:00
import { Meta, StoryObj } from "@storybook/react";
import LastUpdatedText from "./LastUpdatedText";
const meta: Meta<typeof LastUpdatedText> = {
title: "Components/LastUpdatedText",
component: LastUpdatedText,
args: {
whatToRetrieve: "apples",
},
};
export default meta;
type Story = StoryObj<typeof LastUpdatedText>;
export const Basic: Story = {};
export const WithLastUpdatedAt: Story = {
2023-05-03 16:51:33 +00:00
args: {
lastUpdatedAt: "2021-01-01T00:00:00Z",
},
};