Update shared-components story titles to match component paths (#33157)

* Align shared-components Storybook titles with their current paths.

* Rechange the structure for better navigation on storybook

* Update Placement of RoomlistToast to correct catagory

* Update for easier reading

* Adding space for better reading.

* Add spacing for Timeline Event

* add spacing to timeline meta for better reading

* add spacing for better reading for timeline reaction

* Fix wrong placement of Imagebody

* Final Update of structure of shared components

* Update storybook for urlpreviewgroupview
This commit is contained in:
Zack
2026-04-28 09:55:48 +00:00
committed by GitHub
parent d3a395b18b
commit 1dd5748d6f
44 changed files with 48 additions and 46 deletions
+5 -3
View File
@@ -127,6 +127,8 @@ components that don't need a view model.
All components should have accompanying Storybook stories for documentation and visual testing. Stories are written in TypeScript using the [Component Story Format (CSF)](https://storybook.js.org/docs/api/csf). All components should have accompanying Storybook stories for documentation and visual testing. Stories are written in TypeScript using the [Component Story Format (CSF)](https://storybook.js.org/docs/api/csf).
Use shallow, browse-oriented story titles such as `RoomList/RoomListSearchView` or `TimelineBody/DecryptionFailureBodyView`. Do not mirror the full source path in the Storybook title.
#### Story File Structure #### Story File Structure
Place the story file next to the component with the `.stories.tsx` extension: Place the story file next to the component with the `.stories.tsx` extension:
@@ -254,7 +256,7 @@ Example with Figma integration:
```tsx ```tsx
const meta = { const meta = {
title: "Room List/RoomListSearchView", title: "RoomList/RoomListSearchView",
component: RoomListSearchViewWrapper, component: RoomListSearchViewWrapper,
tags: ["autodocs"], tags: ["autodocs"],
args: { args: {
@@ -277,7 +279,7 @@ The Figma design will appear in the "Design" tab in Storybook.
For utility functions, helpers, and other non-UI exports, create documentation stories using TSX format with TypeDoc-generated markdown. For utility functions, helpers, and other non-UI exports, create documentation stories using TSX format with TypeDoc-generated markdown.
`src/utils/humanize.stories.tsx` `src/core/utils/humanize.stories.tsx`
```tsx ```tsx
import React from "react"; import React from "react";
@@ -287,7 +289,7 @@ import type { Meta } from "@storybook/react-vite";
import humanizeTimeDoc from "../../typedoc/functions/humanizeTime.md?raw"; import humanizeTimeDoc from "../../typedoc/functions/humanizeTime.md?raw";
const meta = { const meta = {
title: "utils/humanize", title: "Core/Humanize",
parameters: { parameters: {
docs: { docs: {
page: () => ( page: () => (
@@ -11,7 +11,7 @@ import { type Meta, type StoryObj } from "@storybook/react-vite";
import { AvatarWithDetails } from "./AvatarWithDetails"; import { AvatarWithDetails } from "./AvatarWithDetails";
const meta = { const meta = {
title: "core/AvatarWithDetails", title: "Core/AvatarWithDetails",
component: AvatarWithDetails, component: AvatarWithDetails,
tags: ["autodocs"], tags: ["autodocs"],
args: { args: {
@@ -14,7 +14,7 @@ import { items, SimpleItemComponent } from "../story-mock";
import { getContainerAccessibleProps, getItemAccessibleProps } from "../accessbility"; import { getContainerAccessibleProps, getItemAccessibleProps } from "../accessbility";
const meta = { const meta = {
title: "Utils/VirtualizedList/FlatVirtualizedList", title: "Core/FlatVirtualizedList",
component: FlatVirtualizedList<SimpleItemComponent, undefined>, component: FlatVirtualizedList<SimpleItemComponent, undefined>,
parameters: { parameters: {
docs: { docs: {
@@ -17,7 +17,7 @@ import { getContainerAccessibleProps, getGroupHeaderAccessibleProps, getItemAcce
const totalRows = groups.reduce((total, group) => total + 1 + group.items.length, 0); const totalRows = groups.reduce((total, group) => total + 1 + group.items.length, 0);
const meta = { const meta = {
title: "Utils/VirtualizedList/GroupedVirtualizedList", title: "Core/GroupedVirtualizedList",
component: GroupedVirtualizedList<SimpleGroupHeader, SimpleItemComponent, undefined>, component: GroupedVirtualizedList<SimpleGroupHeader, SimpleItemComponent, undefined>,
parameters: { parameters: {
docs: { docs: {
@@ -12,7 +12,7 @@ import type { Meta, StoryObj } from "@storybook/react-vite";
import { Pill } from "./Pill"; import { Pill } from "./Pill";
const meta = { const meta = {
title: "PillInput/Pill", title: "Core/Pill",
component: Pill, component: Pill,
tags: ["autodocs"], tags: ["autodocs"],
args: { args: {
@@ -12,7 +12,7 @@ import type { Meta, StoryObj } from "@storybook/react-vite";
import { PillInput } from "./PillInput"; import { PillInput } from "./PillInput";
const meta = { const meta = {
title: "PillInput/PillInput", title: "Core/PillInput",
component: PillInput, component: PillInput,
tags: ["autodocs"], tags: ["autodocs"],
args: { args: {
@@ -14,7 +14,7 @@ import { RichItem } from "./RichItem";
const currentTimestamp = new Date("2025-03-09T12:00:00Z").getTime(); const currentTimestamp = new Date("2025-03-09T12:00:00Z").getTime();
const meta = { const meta = {
title: "RichList/RichItem", title: "Core/RichItem",
component: RichItem, component: RichItem,
tags: ["autodocs"], tags: ["autodocs"],
args: { args: {
@@ -14,7 +14,7 @@ import { RichItem } from "../RichItem";
const avatar = <div style={{ width: 32, height: 32, backgroundColor: "#ccc", borderRadius: "50%" }} />; const avatar = <div style={{ width: 32, height: 32, backgroundColor: "#ccc", borderRadius: "50%" }} />;
const meta = { const meta = {
title: "RichList/RichList", title: "Core/RichList",
component: RichList, component: RichList,
tags: ["autodocs"], tags: ["autodocs"],
decorators: [ decorators: [
@@ -13,7 +13,7 @@ import formatBytesDoc from "../../../typedoc/functions/formatBytes.md?raw";
import formatSecondsDoc from "../../../typedoc/functions/formatSeconds.md?raw"; import formatSecondsDoc from "../../../typedoc/functions/formatSeconds.md?raw";
const meta = { const meta = {
title: "utils/FormattingUtils", title: "Core/FormattingUtils",
parameters: { parameters: {
docs: { docs: {
page: () => ( page: () => (
@@ -13,7 +13,7 @@ import { LinkedText } from "./LinkedText";
import { LinkedTextContext } from "./LinkedTextContext"; import { LinkedTextContext } from "./LinkedTextContext";
const meta = { const meta = {
title: "Utils/LinkedText", title: "Core/LinkedText",
component: LinkedText, component: LinkedText,
decorators: [ decorators: [
(Story, { args }) => ( (Story, { args }) => (
@@ -12,7 +12,7 @@ import type { Meta } from "@storybook/react-vite";
import humanizeTimeDoc from "../../../typedoc/functions/humanizeTime.md?raw"; import humanizeTimeDoc from "../../../typedoc/functions/humanizeTime.md?raw";
const meta = { const meta = {
title: "utils/humanize", title: "Core/Humanize",
parameters: { parameters: {
docs: { docs: {
page: () => ( page: () => (
@@ -18,7 +18,7 @@ import generateLinkedTextOptions from "../../../typedoc/functions/generateLinked
import LinkedTextOptions from "../../../typedoc/interfaces/LinkedTextOptions.md?raw"; import LinkedTextOptions from "../../../typedoc/interfaces/LinkedTextOptions.md?raw";
const meta = { const meta = {
title: "utils/linkify", title: "Core/Linkify",
parameters: { parameters: {
docs: { docs: {
page: () => ( page: () => (
@@ -16,7 +16,7 @@ import percentageWithinDoc from "../../../typedoc/functions/percentageWithin.md?
import sumDoc from "../../../typedoc/functions/sum.md?raw"; import sumDoc from "../../../typedoc/functions/sum.md?raw";
const meta = { const meta = {
title: "utils/numbers", title: "Core/Numbers",
parameters: { parameters: {
docs: { docs: {
page: () => ( page: () => (
@@ -12,7 +12,7 @@ import type { Meta, StoryObj } from "@storybook/react-vite";
import { RoomListToast } from "./RoomListToast"; import { RoomListToast } from "./RoomListToast";
const meta = { const meta = {
title: "Room List/RoomListView/RoomListToast", title: "Room List/RoomListToast",
component: RoomListToast, component: RoomListToast,
tags: ["autodocs"], tags: ["autodocs"],
args: { args: {
@@ -13,7 +13,7 @@ import { RoomListItemAccessibilityWrapper } from "./RoomListItemAccessibilityWra
import { createMockRoomItemViewModel, renderAvatar } from "../../story-mocks"; import { createMockRoomItemViewModel, renderAvatar } from "../../story-mocks";
const meta = { const meta = {
title: "Room List/RoomListItemAccessibiltyWrapper", title: "Room List/RoomListItemAccessibilityWrapper",
component: RoomListItemAccessibilityWrapper, component: RoomListItemAccessibilityWrapper,
tags: ["autodocs"], tags: ["autodocs"],
args: { args: {
@@ -37,7 +37,7 @@ const RoomStatusBarViewWrapperImpl = ({
const RoomStatusBarViewWrapper = withViewDocs(RoomStatusBarViewWrapperImpl, RoomStatusBarView); const RoomStatusBarViewWrapper = withViewDocs(RoomStatusBarViewWrapperImpl, RoomStatusBarView);
const meta = { const meta = {
title: "room/RoomStatusBarView", title: "Room/RoomStatusBarView",
component: RoomStatusBarViewWrapper, component: RoomStatusBarViewWrapper,
tags: ["autodocs"], tags: ["autodocs"],
argTypes: {}, argTypes: {},
@@ -38,7 +38,7 @@ const WidgetPipViewWrapperImpl = ({
const WidgetPipViewWrapper = withViewDocs(WidgetPipViewWrapperImpl, WidgetPipView); const WidgetPipViewWrapper = withViewDocs(WidgetPipViewWrapperImpl, WidgetPipView);
export default { export default {
title: "room/WidgetPipView", title: "Room/WidgetPipView",
component: WidgetPipViewWrapper, component: WidgetPipViewWrapper,
tags: ["autodocs"], tags: ["autodocs"],
argTypes: {}, argTypes: {},
@@ -14,7 +14,7 @@ import { Banner } from "./Banner";
import avatarImage from "../../../../static/element.png"; import avatarImage from "../../../../static/element.png";
const meta = { const meta = {
title: "room/Banner", title: "Room/Banner",
component: Banner, component: Banner,
tags: ["autodocs"], tags: ["autodocs"],
args: { args: {
@@ -45,7 +45,7 @@ const WidgetContextMenuViewWrapperImpl = ({
const WidgetContextMenuViewWrapper = withViewDocs(WidgetContextMenuViewWrapperImpl, WidgetContextMenuView); const WidgetContextMenuViewWrapper = withViewDocs(WidgetContextMenuViewWrapperImpl, WidgetContextMenuView);
const meta = { const meta = {
title: "RightPanel/WidgetContextMenuView", title: "Room/WidgetContextMenuView",
component: WidgetContextMenuViewWrapper, component: WidgetContextMenuViewWrapper,
tags: ["autodocs"], tags: ["autodocs"],
args: { args: {
@@ -29,7 +29,7 @@ const DateSeparatorViewWrapperImpl = ({
const DateSeparatorViewWrapper = withViewDocs(DateSeparatorViewWrapperImpl, DateSeparatorView); const DateSeparatorViewWrapper = withViewDocs(DateSeparatorViewWrapperImpl, DateSeparatorView);
const meta = { const meta = {
title: "Timeline/DateSeparatorView", title: "Timeline/Timeline Meta/DateSeparatorView",
component: DateSeparatorViewWrapper, component: DateSeparatorViewWrapper,
tags: ["autodocs"], tags: ["autodocs"],
argTypes: { argTypes: {
@@ -32,7 +32,7 @@ const ReadMarkerWrapper = ({
}; };
const meta = { const meta = {
title: "Timeline/ReadMarker", title: "Timeline/Timeline Meta/ReadMarker",
component: ReadMarkerWrapper, component: ReadMarkerWrapper,
tags: ["autodocs"], tags: ["autodocs"],
args: { args: {
@@ -12,7 +12,7 @@ import TimelineSeparator from "./TimelineSeparator";
import styles from "./TimelineSeparator.module.css"; import styles from "./TimelineSeparator.module.css";
const meta = { const meta = {
title: "MessageBody/TimelineSeparator", title: "Timeline/Timeline Meta/TimelineSeparator",
component: TimelineSeparator, component: TimelineSeparator,
tags: ["autodocs"], tags: ["autodocs"],
args: { args: {
@@ -30,7 +30,7 @@ const DisambiguatedProfileViewWrapperImpl = ({
const DisambiguatedProfileViewWrapper = withViewDocs(DisambiguatedProfileViewWrapperImpl, DisambiguatedProfileView); const DisambiguatedProfileViewWrapper = withViewDocs(DisambiguatedProfileViewWrapperImpl, DisambiguatedProfileView);
const meta = { const meta = {
title: "Profile/DisambiguatedProfile", title: "Timeline/Timeline Event/DisambiguatedProfile",
component: DisambiguatedProfileViewWrapper, component: DisambiguatedProfileViewWrapper,
tags: ["autodocs"], tags: ["autodocs"],
argTypes: { argTypes: {
@@ -25,7 +25,7 @@ const EncryptionEventViewWrapperImpl = ({
const EncryptionEventViewWrapper = withViewDocs(EncryptionEventViewWrapperImpl, EncryptionEventView); const EncryptionEventViewWrapper = withViewDocs(EncryptionEventViewWrapperImpl, EncryptionEventView);
const meta = { const meta = {
title: "Event/EncryptionEvent", title: "Timeline/Timeline Event/EncryptionEventView",
component: EncryptionEventViewWrapper, component: EncryptionEventViewWrapper,
tags: ["autodocs"], tags: ["autodocs"],
argTypes: { argTypes: {
@@ -12,7 +12,7 @@ import type { Meta, StoryObj } from "@storybook/react-vite";
import { EventTileBubble } from "./EventTileBubble"; import { EventTileBubble } from "./EventTileBubble";
const meta = { const meta = {
title: "Event/EventTileBubble", title: "Timeline/Timeline Event/EventTileBubble",
component: EventTileBubble, component: EventTileBubble,
tags: ["autodocs"], tags: ["autodocs"],
args: { args: {
@@ -9,7 +9,7 @@ import type { Meta, StoryObj } from "@storybook/react-vite";
import { PinnedMessageBadge } from "./PinnedMessageBadge"; import { PinnedMessageBadge } from "./PinnedMessageBadge";
const meta = { const meta = {
title: "Message body/PinnedMessageBadge", title: "Timeline/Timeline Event/PinnedMessageBadge",
component: PinnedMessageBadge, component: PinnedMessageBadge,
args: { args: {
"aria-describedby": "event-tile-description", "aria-describedby": "event-tile-description",
@@ -11,7 +11,7 @@ import { TextualEventView as TextualEventComponent } from "./TextualEventView";
import { MockViewModel } from "../../../../../core/viewmodel/MockViewModel"; import { MockViewModel } from "../../../../../core/viewmodel/MockViewModel";
const meta = { const meta = {
title: "Event/TextualEvent", title: "Timeline/Timeline Event/TextualEventView",
component: TextualEventComponent, component: TextualEventComponent,
tags: ["autodocs"], tags: ["autodocs"],
args: { args: {
@@ -34,7 +34,7 @@ const TileErrorViewWrapperImpl = ({
const TileErrorViewWrapper = withViewDocs(TileErrorViewWrapperImpl, TileErrorView); const TileErrorViewWrapper = withViewDocs(TileErrorViewWrapperImpl, TileErrorView);
const meta = { const meta = {
title: "MessageBody/TileErrorView", title: "Timeline/Timeline Event/TileErrorView",
component: TileErrorViewWrapper, component: TileErrorViewWrapper,
tags: ["autodocs"], tags: ["autodocs"],
decorators: [ decorators: [
@@ -15,7 +15,7 @@ import imageFile from "../../../../../../static/element.png";
import imageFileWide from "../../../../../../static/wideImage.png"; import imageFileWide from "../../../../../../static/wideImage.png";
export default { export default {
title: "Event/UrlPreviewGroupView/LinkPreview", title: "EventTiles/LinkPreview",
component: LinkPreview, component: LinkPreview,
tags: ["autodocs"], tags: ["autodocs"],
args: { args: {
@@ -43,7 +43,7 @@ const UrlPreviewGroupViewWrapperImpl = ({
const UrlPreviewGroupViewWrapper = withViewDocs(UrlPreviewGroupViewWrapperImpl, UrlPreviewGroupView); const UrlPreviewGroupViewWrapper = withViewDocs(UrlPreviewGroupViewWrapperImpl, UrlPreviewGroupView);
export default { export default {
title: "Event/UrlPreviewGroupView", title: "Timeline/Timeline Event/UrlPreviewGroupView",
component: UrlPreviewGroupViewWrapper, component: UrlPreviewGroupViewWrapper,
tags: ["autodocs"], tags: ["autodocs"],
args: { args: {
@@ -58,7 +58,7 @@ const ActionBarViewWrapperImpl = ({ ...snapshotAndActions }: ActionBarProps): JS
const ActionBarViewWrapper = withViewDocs(ActionBarViewWrapperImpl, ActionBarView); const ActionBarViewWrapper = withViewDocs(ActionBarViewWrapperImpl, ActionBarView);
const meta = { const meta = {
title: "Room/Timeline/EventTile/Actions/ActionBarView", title: "Timeline/Timeline Action/ActionBarView",
component: ActionBarViewWrapper, component: ActionBarViewWrapper,
tags: ["autodocs"], tags: ["autodocs"],
argTypes: { argTypes: {
@@ -30,7 +30,7 @@ const AudioPlayerViewWrapperImpl = ({
const AudioPlayerViewWrapper = withViewDocs(AudioPlayerViewWrapperImpl, AudioPlayerView); const AudioPlayerViewWrapper = withViewDocs(AudioPlayerViewWrapperImpl, AudioPlayerView);
const meta = { const meta = {
title: "Audio/AudioPlayerView", title: "Timeline/Timeline Body/AudioPlayerView",
component: AudioPlayerViewWrapper, component: AudioPlayerViewWrapper,
tags: ["autodocs"], tags: ["autodocs"],
argTypes: { argTypes: {
@@ -29,7 +29,7 @@ const DecryptionFailureBodyViewWrapperImpl = ({
const DecryptionFailureBodyViewWrapper = withViewDocs(DecryptionFailureBodyViewWrapperImpl, DecryptionFailureBodyView); const DecryptionFailureBodyViewWrapper = withViewDocs(DecryptionFailureBodyViewWrapperImpl, DecryptionFailureBodyView);
const meta = { const meta = {
title: "MessageBody/DecryptionFailureBodyView", title: "Timeline/Timeline Body/DecryptionFailureBodyView",
component: DecryptionFailureBodyViewWrapper, component: DecryptionFailureBodyViewWrapper,
tags: ["autodocs"], tags: ["autodocs"],
argTypes: { argTypes: {
@@ -24,7 +24,7 @@ const EventContentBodyWrapperImpl = ({ as, ...snapshot }: EventContentBodyStoryP
const EventContentBodyWrapper = withViewDocs(EventContentBodyWrapperImpl, EventContentBodyView); const EventContentBodyWrapper = withViewDocs(EventContentBodyWrapperImpl, EventContentBodyView);
const meta = { const meta = {
title: "MessageBody/EventContentBody", title: "Timeline/Timeline Body/EventContentBody",
component: EventContentBodyWrapper, component: EventContentBodyWrapper,
tags: ["autodocs"], tags: ["autodocs"],
args: { args: {
@@ -42,7 +42,7 @@ const FileBodyViewWrapperImpl = ({
const FileBodyViewWrapper = withViewDocs(FileBodyViewWrapperImpl, FileBodyView); const FileBodyViewWrapper = withViewDocs(FileBodyViewWrapperImpl, FileBodyView);
const meta = { const meta = {
title: "MessageBody/FileBodyView", title: "Timeline/Timeline Body/FileBodyView",
component: FileBodyViewWrapper, component: FileBodyViewWrapper,
tags: ["autodocs"], tags: ["autodocs"],
argTypes: { argTypes: {
@@ -61,7 +61,7 @@ const ImageBodyViewWrapperImpl = ({
const ImageBodyViewWrapper = withViewDocs(ImageBodyViewWrapperImpl, ImageBodyView); const ImageBodyViewWrapper = withViewDocs(ImageBodyViewWrapperImpl, ImageBodyView);
const meta = { const meta = {
title: "MessageBody/ImageBodyView", title: "Timeline/Timeline Body/ImageBodyView",
component: ImageBodyViewWrapper, component: ImageBodyViewWrapper,
tags: ["autodocs"], tags: ["autodocs"],
argTypes: { argTypes: {
@@ -44,7 +44,7 @@ const VideoBodyViewWrapperImpl = ({
const VideoBodyViewWrapper = withViewDocs(VideoBodyViewWrapperImpl, VideoBodyView); const VideoBodyViewWrapper = withViewDocs(VideoBodyViewWrapperImpl, VideoBodyView);
const meta = { const meta = {
title: "MessageBody/VideoBodyView", title: "Timeline/Timeline Body/VideoBodyView",
component: VideoBodyViewWrapper, component: VideoBodyViewWrapper,
tags: ["autodocs"], tags: ["autodocs"],
argTypes: { argTypes: {
@@ -9,7 +9,7 @@ import { MediaBody } from "./MediaBody";
import type { Meta, StoryObj } from "@storybook/react-vite"; import type { Meta, StoryObj } from "@storybook/react-vite";
const meta = { const meta = {
title: "MessageBody/MediaBody", title: "Timeline/Timeline Body/MediaBody",
component: MediaBody, component: MediaBody,
tags: ["autodocs"], tags: ["autodocs"],
args: { args: {
@@ -27,7 +27,7 @@ const RedactedBodyViewWrapperImpl = ({
const RedactedBodyViewWrapper = withViewDocs(RedactedBodyViewWrapperImpl, RedactedBodyView); const RedactedBodyViewWrapper = withViewDocs(RedactedBodyViewWrapperImpl, RedactedBodyView);
const meta = { const meta = {
title: "MessageBody/RedactedBodyView", title: "Timeline/Timeline Body/RedactedBodyView",
component: RedactedBodyViewWrapper, component: RedactedBodyViewWrapper,
tags: ["autodocs"], tags: ["autodocs"],
args: { args: {
@@ -76,7 +76,7 @@ const TEXTUAL_BODY_VIEW_BODY_WRAPPER_KIND_OPTIONS = [
]; ];
const meta = { const meta = {
title: "MessageBody/TextualBody", title: "Timeline/Timeline Body/TextualBody",
component: TextualBodyViewWrapper, component: TextualBodyViewWrapper,
tags: ["autodocs"], tags: ["autodocs"],
argTypes: { argTypes: {
@@ -81,7 +81,7 @@ const ReactionsRowViewWrapperImpl = ({
const ReactionsRowViewWrapper = withViewDocs(ReactionsRowViewWrapperImpl, ReactionsRowView); const ReactionsRowViewWrapper = withViewDocs(ReactionsRowViewWrapperImpl, ReactionsRowView);
const meta = { const meta = {
title: "MessageBody/ReactionsRow", title: "Timeline/Timeline Reaction/ReactionsRow",
component: ReactionsRowViewWrapper, component: ReactionsRowViewWrapper,
tags: ["autodocs"], tags: ["autodocs"],
args: { args: {
@@ -58,7 +58,7 @@ const ReactionsRowButtonViewWrapperImpl = ({
const ReactionsRowButtonViewWrapper = withViewDocs(ReactionsRowButtonViewWrapperImpl, ReactionsRowButtonView); const ReactionsRowButtonViewWrapper = withViewDocs(ReactionsRowButtonViewWrapperImpl, ReactionsRowButtonView);
const meta = { const meta = {
title: "MessageBody/ReactionsRowButton", title: "Timeline/Timeline Reaction/ReactionsRowButton",
component: ReactionsRowButtonViewWrapper, component: ReactionsRowButtonViewWrapper,
tags: ["autodocs"], tags: ["autodocs"],
args: { args: {
@@ -27,7 +27,7 @@ const ReactionsRowButtonTooltipViewWrapper = withViewDocs(
); );
const meta = { const meta = {
title: "MessageBody/ReactionsRowButtonTooltip", title: "Timeline/Timeline Reaction/ReactionsRowButtonTooltip",
component: ReactionsRowButtonTooltipViewWrapper, component: ReactionsRowButtonTooltipViewWrapper,
tags: ["autodocs"], tags: ["autodocs"],
argTypes: { argTypes: {
@@ -33,7 +33,7 @@ const MessageTimestampWrapperImpl = ({
const MessageTimestampWrapper = withViewDocs(MessageTimestampWrapperImpl, MessageTimestampView); const MessageTimestampWrapper = withViewDocs(MessageTimestampWrapperImpl, MessageTimestampView);
const meta = { const meta = {
title: "MessageBody/MessageTimestamp", title: "Timeline/Timeline Meta/MessageTimestampView",
component: MessageTimestampWrapper, component: MessageTimestampWrapper,
tags: ["autodocs"], tags: ["autodocs"],
args: { args: {