Official-storybook: Fix passArgsFirst problems

This commit is contained in:
Michael Shilman 2020-04-15 17:28:54 +08:00
parent 614616e972
commit e74d7035c8
4 changed files with 4 additions and 4 deletions

View File

@ -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:

View File

@ -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 = {

View File

@ -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) => {

View File

@ -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) => {