mirror of
https://github.com/arsvendg/Stirling-PDF.git
synced 2026-07-14 10:34:06 +02:00
21 lines
609 B
TypeScript
21 lines
609 B
TypeScript
import type { Meta, StoryObj } from "@storybook/react-vite";
|
|
import { EndpointReferenceSection } from "@portal/components/docs/EndpointReferenceSection";
|
|
import "@portal/views/DeveloperDocs.css";
|
|
|
|
const meta: Meta<typeof EndpointReferenceSection> = {
|
|
title: "Portal/DeveloperDocs/EndpointReferenceSection",
|
|
component: EndpointReferenceSection,
|
|
parameters: { layout: "padded" },
|
|
decorators: [
|
|
(S) => (
|
|
<div style={{ maxWidth: "46rem" }}>
|
|
<S />
|
|
</div>
|
|
),
|
|
],
|
|
};
|
|
export default meta;
|
|
type Story = StoryObj<typeof EndpointReferenceSection>;
|
|
|
|
export const Default: Story = {};
|