-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
implement toolsbar in orthanc content
- Loading branch information
Showing
4 changed files
with
70 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,10 @@ | ||
import { Meta, StoryObj } from '@storybook/react'; | ||
// import { Meta, StoryObj } from '@storybook/react'; | ||
|
||
import Toolsbar from '../src/ui/Toolsbar'; | ||
// import Toolsbar from '../src/ui/Toolsbar'; | ||
|
||
const meta: Meta<typeof Toolsbar> = { | ||
title: 'GAELO FLOW UI/Toolsbar', // Corrected the title spelling | ||
component: Toolsbar, | ||
args: { | ||
isToggled: false, | ||
}, | ||
argTypes: { | ||
isToggled: { | ||
control: { type: "boolean" }, | ||
}, | ||
}, | ||
tags: ["autodocs"], | ||
}; | ||
|
||
export default meta; | ||
type Story = StoryObj<typeof Toolsbar>; | ||
|
||
export const ToggleSwitchStory: Story = {}; // Corrected the story name spelling | ||
// export default meta; | ||
// type Story = StoryObj<typeof Toolsbar>; | ||
|
||
// export const ToggleSwitchStory: Story = {}; |