feat(UI): add initial server picker

This commit is contained in:
41666 2020-12-19 20:10:23 -05:00
parent d4e8e8330a
commit e758c09fbf
19 changed files with 319 additions and 12 deletions

View file

@ -0,0 +1,13 @@
import { SmallTitle } from 'roleypoly/design-system/atoms/typography';
import { Collapse } from './Collapse';
export default {
title: 'Atoms/Collapse',
component: Collapse,
};
export const collapse = (args) => (
<SmallTitle>
Hello, <Collapse {...args}>small</Collapse> world!
</SmallTitle>
);