v3/packages/design-system/molecules/help-page-base/HelpPageBase.stories.tsx

14 lines
344 B
TypeScript

import * as React from 'react';
import { HelpStoryWrapper } from './storyDecorator';
export default {
title: 'Molecules/Help Page',
decorators: [HelpStoryWrapper],
};
export const Base = () => (
<>
<h1>What is the world but vibrations?</h1>
<p>Vibrations that synchronize and tie it together, running free forever.</p>
</>
);