fleet/frontend/components/LastUpdatedText/LastUpdatedText.stories.tsx
2024-01-23 09:16:10 -05:00

24 lines
471 B
TypeScript

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 = {
args: {
lastUpdatedAt: "2021-01-01T00:00:00Z",
},
};