Skip to content

feat: Initial workspaces page route + skeleton #220

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 14 commits into from
Feb 16, 2022
Merged
Prev Previous commit
Next Next commit
Add initial story for workspace dashboard
  • Loading branch information
bryphe-coder committed Feb 9, 2022
commit 764acb8ea28e682f5b8e6b770077550f5624ade4
19 changes: 19 additions & 0 deletions site/components/Workspace/Workspace.stories.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import { Story } from "@storybook/react"
import React from "react"
import { Workspace, WorkspaceProps } from "./Workspace"
import { MockWorkspace } from "../../test_helpers"

export default {
title: "Workspace",
component: Workspace,
argTypes: {

},
}

const Template: Story<WorkspaceProps> = (args) => <Workspace {...args} />

export const Example = Template.bind({})
Example.args = {
workspace: MockWorkspace
}