feat(design-system): add editor skeletons

This commit is contained in:
41666 2021-03-24 00:02:39 -04:00
parent a37d481b18
commit 9e4bcfa79b
9 changed files with 53 additions and 30 deletions

View file

@ -0,0 +1,12 @@
import { BreakpointsProvider } from '@roleypoly/design-system/atoms/breakpoints';
import { guildEnum } from '@roleypoly/design-system/fixtures/storyData';
import * as React from 'react';
import { EditorShell } from './EditorShell';
export default {
title: 'Organisms/Editor',
component: EditorShell,
decorators: [(story) => <BreakpointsProvider>{story()}</BreakpointsProvider>],
};
export const Shell = () => <EditorShell guild={guildEnum.guilds[0]} />;