1
0
mirror of https://github.com/storybookjs/storybook.git synced 2025-03-23 05:02:10 +08:00
2019-06-27 18:47:46 +08:00

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;