diff --git a/assets/js/src/core/components/spin/spin.stories.tsx b/assets/js/src/core/components/spin/spin.stories.tsx new file mode 100644 index 000000000..f62ceaa14 --- /dev/null +++ b/assets/js/src/core/components/spin/spin.stories.tsx @@ -0,0 +1,27 @@ +/** +* Pimcore +* +* This source file is available under two different licenses: +* - Pimcore Open Core License (POCL) +* - Pimcore Commercial License (PCL) +* Full copyright and license information is available in +* LICENSE.md which is distributed with this source code. +* +* @copyright Copyright (c) Pimcore GmbH (http://www.pimcore.org) +* @license https://github.com/pimcore/studio-ui-bundle/blob/1.x/LICENSE.md POCL and PCL +*/ + +import { type Meta } from '@storybook/react' +import { Spin } from './spin' + +const config: Meta = { + title: 'Components/Feedback/Spin', + component: Spin, + args: { + asContainer: true + } +} + +export default config + +export const _default = {}