mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-23 05:02:10 +08:00
12 lines
222 B
JavaScript
12 lines
222 B
JavaScript
import { withLinks } from '@storybook/addon-links';
|
|
|
|
import './welcome.css';
|
|
import welcome from './welcome.html';
|
|
|
|
export default {
|
|
title: 'Welcome',
|
|
decorators: [withLinks],
|
|
};
|
|
|
|
export const Welcome = () => welcome;
|