mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +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,
|
background: theme.background.content,
|
||||||
}));
|
}));
|
||||||
|
|
||||||
// eslint-disable-next-line react/prop-types
|
export const Locale = (_args, { globalArgs: { locale } }) => {
|
||||||
export const Locale = ({ globalArgs: { locale } }) => {
|
|
||||||
return (
|
return (
|
||||||
<Themed style={{ fontSize: 30 }}>
|
<Themed style={{ fontSize: 30 }}>
|
||||||
Your locale is '{locale}', so I say:
|
Your locale is '{locale}', so I say:
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
/* eslint-disable react/prop-types */
|
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
|
|
||||||
// We would need to add this in config.js idiomatically however that would make this file a bit confusing
|
// 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?
|
// 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?
|
// 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>
|
<pre>Parameters: {JSON.stringify(parameters, null, 2)}</pre>
|
||||||
);
|
);
|
||||||
Passed.story = {
|
Passed.story = {
|
||||||
|
@ -13,6 +13,7 @@ import { mockProps, realProps, MockPage } from './app.mockdata';
|
|||||||
export default {
|
export default {
|
||||||
title: 'UI/Layout/Desktop',
|
title: 'UI/Layout/Desktop',
|
||||||
component: Desktop,
|
component: Desktop,
|
||||||
|
parameters: { passArgsFirst: false },
|
||||||
decorators: [
|
decorators: [
|
||||||
withKnobs,
|
withKnobs,
|
||||||
((StoryFn, c) => {
|
((StoryFn, c) => {
|
||||||
|
@ -11,6 +11,7 @@ import { mockProps, realProps, MockPage } from './app.mockdata';
|
|||||||
export default {
|
export default {
|
||||||
title: 'UI/Layout/Mobile',
|
title: 'UI/Layout/Mobile',
|
||||||
component: Mobile,
|
component: Mobile,
|
||||||
|
parameters: { passArgsFirst: false },
|
||||||
decorators: [
|
decorators: [
|
||||||
withKnobs,
|
withKnobs,
|
||||||
((StoryFn, c) => {
|
((StoryFn, c) => {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user