mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-25 03:49:11 +00:00
17 lines
406 B
TypeScript
17 lines
406 B
TypeScript
import * as React from 'react';
|
|
import { guild } from '../../fixtures/storyData';
|
|
import { ServerMasthead } from './ServerMasthead';
|
|
|
|
export default {
|
|
title: 'Molecules/Server Masthead',
|
|
args: {
|
|
editable: false,
|
|
guild,
|
|
},
|
|
};
|
|
|
|
export const Default = (args) => <ServerMasthead {...args} />;
|
|
export const Editable = (args) => <ServerMasthead {...args} />;
|
|
Editable.args = {
|
|
editable: true,
|
|
};
|