mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-25 11:59:11 +00:00
10 lines
284 B
TypeScript
10 lines
284 B
TypeScript
import * as React from 'react';
|
|
import { guildEnum } from '../../fixtures/storyData';
|
|
import { EditorShell } from './EditorShell';
|
|
|
|
export default {
|
|
title: 'Organisms/Editor',
|
|
component: EditorShell,
|
|
};
|
|
|
|
export const Shell = () => <EditorShell guild={guildEnum.guildsList[0]} />;
|