App reorganization

This commit is contained in:
adilallo
2026-04-18 14:12:49 -06:00
parent f866d11ff8
commit e9dab04b34
288 changed files with 2698 additions and 5029 deletions
+28
View File
@@ -0,0 +1,28 @@
import Separator from "../../app/components/utility/Separator";
export default {
title: "Components/Utility/Separator",
component: Separator,
parameters: {
layout: "padded",
},
argTypes: {},
};
export const Default = {
render: () => (
<div style={{ width: 320 }}>
<Separator />
</div>
),
};
export const InContext = {
render: () => (
<div style={{ width: 320, display: "flex", flexDirection: "column", gap: 12 }}>
<p>Above the separator</p>
<Separator />
<p>Below the separator</p>
</div>
),
};