cleanup storybook

This commit is contained in:
41666 2021-07-04 13:17:13 -05:00
parent 1829035694
commit 17bceae60f
3 changed files with 1 additions and 9 deletions

View file

@ -1,24 +0,0 @@
import { Meta } from '@storybook/addon-docs/blocks';
import { Logotype } from '@roleypoly/design-system/atoms/branding';
import { Space } from '@roleypoly/design-system/atoms/space';
import { palette } from '@roleypoly/design-system/atoms/colors';
<Meta title="Roleypoly Design System" />
<Logotype height="4em" circleFill={palette.taupe100} circleOuterFill={palette.taupe300} />
<Space />
# Rapid UI
#### Roleypoly Design System
This is a tool for Roleypoly developers to design and show off UI
components as they build them.
If you're interested in helping build Roleypoly, [please visit the GitHub project.][roleypoly]
All components here follow the [Atomic Design System][atomic], and might be used in any number of Roleypoly UI systems, not limited to
just the end user web application.
[roleypoly]: https://github.com/roleypoly/roleypoly
[atomic]: https://bradfrost.com/blog/post/atomic-web-design/

View file

@ -1,9 +1,9 @@
module.exports = {
stories: [
'../*.stories.mdx',
...['atoms', 'molecules', 'organisms', 'templates'].map(
(dir) => `../${dir}/**/*.stories.@(tsx|mdx)`
),
'*.stories.mdx',
],
addons: ['@storybook/addon-links', '@storybook/addon-essentials'],
reactOptions: {

View file

@ -1,8 +0,0 @@
import * as React from 'react';
type Props = {
children: React.ReactNode;
};
const Link = (props: Props) => <>{props.children}</>;
export default Link;