12 lines
222 B
JavaScript
Raw Normal View History

import { withLinks } from '@storybook/addon-links';
import './welcome.css';
import welcome from './welcome.html';
export default {
title: 'Welcome',
decorators: [withLinks],
};
export const Welcome = () => welcome;