import type { Meta, StoryObj } from '@storybook/react';
import {
  LoadingPageComments,
  type LoadingPageCommentsProps,
} from './loading-page-comments';
import { Page } from './page';
const WrappedLoadingPageComments = (props: LoadingPageCommentsProps) => (
  
    
  
);
const meta = {
  component: LoadingPageComments,
  title: 'Templates/Page/LoadingPageComments',
  render: WrappedLoadingPageComments,
  parameters: {
    layout: 'fullscreen',
  },
} satisfies Meta;
export default meta;
type Story = StoryObj;
export const Default: Story = {
  args: {},
};