mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-06-17 01:59:08 +00:00
feat: add access control
This commit is contained in:
parent
9c07ff0e54
commit
3f45153b66
47 changed files with 1084 additions and 164 deletions
|
@ -0,0 +1,23 @@
|
|||
import { mastheadSlugs } from '@roleypoly/design-system/fixtures/storyData';
|
||||
import { GoGear } from 'react-icons/go';
|
||||
import { EditorUtilityShell } from './EditorUtilityShell';
|
||||
|
||||
export default {
|
||||
title: 'Molecules/Editor Utility Shell',
|
||||
component: EditorUtilityShell,
|
||||
args: {
|
||||
title: 'Utility Title',
|
||||
guild: mastheadSlugs[0],
|
||||
icon: <GoGear />,
|
||||
},
|
||||
};
|
||||
|
||||
export const editorUtilityShell = (args) => (
|
||||
<EditorUtilityShell {...args}>
|
||||
<p>
|
||||
Lorem ipsum dolor sit amet consectetur adipisicing elit. Expedita, odit inventore?
|
||||
Recusandae dolor minima quos, laboriosam alias iusto officiis culpa! Autem, odit ut.
|
||||
Fugit quaerat esse explicabo quibusdam, ipsum maiores?
|
||||
</p>
|
||||
</EditorUtilityShell>
|
||||
);
|
Loading…
Add table
Add a link
Reference in a new issue