-
-
Notifications
You must be signed in to change notification settings - Fork 651
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
101 changed files
with
1,734 additions
and
441 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ export default { | |
}); | ||
}, | ||
docs: { | ||
autodocs: true, | ||
autodocs: 'tag', | ||
}, | ||
}; | ||
|
||
|
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import React from 'react'; | ||
import {Unstyled} from '@storybook/blocks'; | ||
|
||
import {Code} from '../stories/react/components'; | ||
|
||
export const parameters = { | ||
docs: { | ||
components: { | ||
pre: (props) => ( | ||
<Unstyled> | ||
<pre {...props} /> | ||
</Unstyled> | ||
), | ||
code: Code, | ||
}, | ||
}, | ||
}; |
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 was deleted.
Oops, something went wrong.
4 changes: 1 addition & 3 deletions
4
apps/docs/stories/Droppable/Droppable.mdx → ...ocs/stories/react/Droppable/Droppable.mdx
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
File renamed without changes.
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
File renamed without changes.
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
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import type {Meta, StoryObj} from '@storybook/react'; | ||
|
||
import {SortableExample} from './SortableExample'; | ||
import docs from './docs/Docs.mdx'; | ||
|
||
const meta: Meta<typeof SortableExample> = { | ||
component: SortableExample, | ||
tags: ['autodocs'], | ||
parameters: { | ||
docs: { | ||
page: docs, | ||
}, | ||
}, | ||
}; | ||
|
||
export default meta; | ||
type Story = StoryObj<typeof SortableExample>; | ||
|
||
export const BasicSetup: Story = { | ||
render: SortableExample, | ||
}; |
Oops, something went wrong.