Skip to content

Commit

Permalink
Fixed issues with Storybook build
Browse files Browse the repository at this point in the history
  • Loading branch information
robearlam committed Jul 19, 2024
1 parent 4f2d505 commit 4b4c2e6
Show file tree
Hide file tree
Showing 9 changed files with 27 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ type Story = StoryObj<typeof meta>;
export const ErrorMsg: Story = {
name: 'Error Message',
args: {
rendering: {
componentName: 'ErrorMsg',
},
params: {},
fields: {
Text: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ type Story = StoryObj<typeof meta>;
export const Event: Story = {
name: 'Hero Event',
args: {
rendering: {
componentName: 'Event',
},
params: {
styles: '',
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ type Story = StoryObj<typeof meta>;
export const Homepage: Story = {
name: 'Hero Homepage',
args: {
rendering: {
componentName: 'Homepage',
},
params: {
styles: '',
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ type Story = StoryObj<typeof meta>;
export const JustificationLetter: Story = {
name: 'Hero Justification Letter',
args: {
rendering: {
componentName: 'JustificationLetter',
},
params: {
styles: '',
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ type Story = StoryObj<typeof meta>;
export const Button: Story = {
name: 'Button',
args: {
rendering: {
componentName: 'Button',
},
params: {
styles: '',
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ type Story = StoryObj<typeof meta>;
export const Link: Story = {
name: 'Link',
args: {
rendering: {
componentName: 'Link',
},
params: {
styles: '',
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ type Story = StoryObj<typeof meta>;
export const TextAndImage: Story = {
name: 'Text and Image',
args: {
rendering: {
componentName: 'TextAndImage',
},
params: {
styles: '',
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ type Story = StoryObj<typeof meta>;
export const Default: Story = {
name: 'Default',
args: {
rendering: {
componentName: 'Default',
},
params: {
styles: '',
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ type Story = StoryObj<typeof meta>;
export const VideoAndText: Story = {
name: 'Video and Text',
args: {
rendering: {
componentName: 'VideoAndText',
},
params: {
styles: '',
},
Expand Down

0 comments on commit 4b4c2e6

Please sign in to comment.