Skip to content

Commit 764acb8

Browse files
committed
Add initial story for workspace dashboard
1 parent d139d7b commit 764acb8

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import { Story } from "@storybook/react"
2+
import React from "react"
3+
import { Workspace, WorkspaceProps } from "./Workspace"
4+
import { MockWorkspace } from "../../test_helpers"
5+
6+
export default {
7+
title: "Workspace",
8+
component: Workspace,
9+
argTypes: {
10+
11+
},
12+
}
13+
14+
const Template: Story<WorkspaceProps> = (args) => <Workspace {...args} />
15+
16+
export const Example = Template.bind({})
17+
Example.args = {
18+
workspace: MockWorkspace
19+
}

0 commit comments

Comments
 (0)