Portal: full mock-driven surfaces, demonolithed components, backend-ready mocks (#6686)

This commit is contained in:
Reece Browne
2026-06-16 12:20:35 +01:00
committed by GitHub
parent 6716398ccb
commit 96accea984
146 changed files with 12221 additions and 286 deletions
@@ -0,0 +1,20 @@
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 = {};