1- import type { Meta , StoryObj } from '@storybook/react' ;
2- import { action } from '@storybook/addon-actions' ;
3- import { ManagementSidebar } from './ManagementSidebar' ;
1+ import type { Meta , StoryObj } from '@storybook/react'
2+ import { action } from '@storybook/addon-actions'
3+ import { ManagementSidebar } from './ManagementSidebar'
44
55const meta : Meta < typeof ManagementSidebar > = {
6- title : 'Digital Colleagues /ManagementSidebar' ,
6+ title : 'Foundary /ManagementSidebar' ,
77 component : ManagementSidebar ,
88 parameters : {
99 layout : 'fullscreen' ,
@@ -14,10 +14,10 @@ const meta: Meta<typeof ManagementSidebar> = {
1414 options : [ 'kanban' , 'planning' , 'tasks' , 'files' , 'epics' ] ,
1515 } ,
1616 } ,
17- } ;
17+ }
1818
19- export default meta ;
20- type Story = StoryObj < typeof ManagementSidebar > ;
19+ export default meta
20+ type Story = StoryObj < typeof ManagementSidebar >
2121
2222export const KanbanView : Story = {
2323 args : {
@@ -32,7 +32,7 @@ export const KanbanView: Story = {
3232 </ div >
3333 ) ,
3434 } ,
35- } ;
35+ }
3636
3737export const PlanningView : Story = {
3838 args : {
@@ -47,7 +47,7 @@ export const PlanningView: Story = {
4747 </ div >
4848 ) ,
4949 } ,
50- } ;
50+ }
5151
5252export const TasksView : Story = {
5353 args : {
@@ -62,7 +62,7 @@ export const TasksView: Story = {
6262 </ div >
6363 ) ,
6464 } ,
65- } ;
65+ }
6666
6767export const FilesView : Story = {
6868 args : {
@@ -77,7 +77,7 @@ export const FilesView: Story = {
7777 </ div >
7878 ) ,
7979 } ,
80- } ;
80+ }
8181
8282export const EpicsView : Story = {
8383 args : {
@@ -92,7 +92,7 @@ export const EpicsView: Story = {
9292 </ div >
9393 ) ,
9494 } ,
95- } ;
95+ }
9696
9797export const InteractiveDemo : Story = {
9898 args : {
@@ -104,24 +104,24 @@ export const InteractiveDemo: Story = {
104104 < h1 className = "text-3xl font-bold mb-2" > Project Management Dashboard</ h1 >
105105 < p className = "text-gray-600" > Switch between different views using the sidebar</ p >
106106 </ div >
107-
107+
108108 < div className = "grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6" >
109109 < div className = "bg-white p-6 rounded-lg shadow-sm border" >
110110 < h3 className = "font-semibold mb-2" > Active Tasks</ h3 >
111111 < div className = "text-2xl font-bold text-blue-600" > 23</ div >
112112 </ div >
113-
113+
114114 < div className = "bg-white p-6 rounded-lg shadow-sm border" >
115115 < h3 className = "font-semibold mb-2" > Completed</ h3 >
116116 < div className = "text-2xl font-bold text-green-600" > 142</ div >
117117 </ div >
118-
118+
119119 < div className = "bg-white p-6 rounded-lg shadow-sm border" >
120120 < h3 className = "font-semibold mb-2" > In Progress</ h3 >
121121 < div className = "text-2xl font-bold text-orange-600" > 8</ div >
122122 </ div >
123123 </ div >
124-
124+
125125 < div className = "mt-8 bg-white p-6 rounded-lg shadow-sm border" >
126126 < h3 className = "font-semibold mb-4" > Recent Activity</ h3 >
127127 < div className = "space-y-3" >
@@ -142,4 +142,4 @@ export const InteractiveDemo: Story = {
142142 </ div >
143143 ) ,
144144 } ,
145- } ;
145+ }
0 commit comments