mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-03 05:04:51 +08:00
Official-storybook: Fix passArgsFirst problems
This commit is contained in:
parent
614616e972
commit
e74d7035c8
@ -26,8 +26,7 @@ const Themed = styled.div(({ theme }) => ({
|
||||
background: theme.background.content,
|
||||
}));
|
||||
|
||||
// eslint-disable-next-line react/prop-types
|
||||
export const Locale = ({ globalArgs: { locale } }) => {
|
||||
export const Locale = (_args, { globalArgs: { locale } }) => {
|
||||
return (
|
||||
<Themed style={{ fontSize: 30 }}>
|
||||
Your locale is '{locale}', so I say:
|
||||
|
@ -1,4 +1,3 @@
|
||||
/* eslint-disable react/prop-types */
|
||||
import React from 'react';
|
||||
|
||||
// We would need to add this in config.js idiomatically however that would make this file a bit confusing
|
||||
@ -15,7 +14,7 @@ export default {
|
||||
|
||||
// I'm not sure what we should recommend regarding propTypes? are they a good idea for examples?
|
||||
// Given we sort of control the props, should we export a prop type?
|
||||
export const Passed = ({ parameters: { options, fileName, ...parameters }, ...rest }) => (
|
||||
export const Passed = (_args, { parameters: { options, fileName, ...parameters }, ...rest }) => (
|
||||
<pre>Parameters: {JSON.stringify(parameters, null, 2)}</pre>
|
||||
);
|
||||
Passed.story = {
|
||||
|
@ -13,6 +13,7 @@ import { mockProps, realProps, MockPage } from './app.mockdata';
|
||||
export default {
|
||||
title: 'UI/Layout/Desktop',
|
||||
component: Desktop,
|
||||
parameters: { passArgsFirst: false },
|
||||
decorators: [
|
||||
withKnobs,
|
||||
((StoryFn, c) => {
|
||||
|
@ -11,6 +11,7 @@ import { mockProps, realProps, MockPage } from './app.mockdata';
|
||||
export default {
|
||||
title: 'UI/Layout/Mobile',
|
||||
component: Mobile,
|
||||
parameters: { passArgsFirst: false },
|
||||
decorators: [
|
||||
withKnobs,
|
||||
((StoryFn, c) => {
|
||||
|
Loading…
x
Reference in New Issue
Block a user