Implement modals across create flow

This commit is contained in:
adilallo
2026-04-17 23:45:29 -06:00
parent 36dcb79870
commit 4854c49c4a
21 changed files with 2089 additions and 318 deletions
@@ -0,0 +1,35 @@
import { DecisionApproachesScreen } from "../../app/create/screens/right-rail/DecisionApproachesScreen";
export default {
title: "Pages/Create Flow/Decision approaches",
component: DecisionApproachesScreen,
parameters: {
layout: "fullscreen",
docs: {
description: {
component:
"Decision-making sidebar layout with CardStack and supporting content.",
},
},
},
decorators: [
(Story) => (
<div className="min-h-screen bg-black flex items-center justify-center">
<Story />
</div>
),
],
tags: ["autodocs"],
};
export const Desktop = {
parameters: {
viewport: { defaultViewport: "desktop" },
},
};
export const Mobile = {
parameters: {
viewport: { defaultViewport: "mobile1" },
},
};