Skip to content

Commit

Permalink
Update code-snippets.stories.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
cdedreuille committed May 17, 2024
1 parent 5158d1c commit c66d3b7
Showing 1 changed file with 22 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,13 @@ export const PackagePNPM: Story = {
},
};

export const ReactNoLanguage: Story = {
args: {
content: content2,
activeRenderer: 'react',
},
};

export const ReactJS: Story = {
args: {
content: content2,
Expand All @@ -127,6 +134,21 @@ export const ReactTS: Story = {
},
};

export const AngularNoLanguage: Story = {
args: {
content: content2,
activeRenderer: 'angular',
},
};

export const AngularJS: Story = {
args: {
content: content2,
activeRenderer: 'angular',
activeLanguage: 'js',
},
};

export const ContentUndefined: Story = {
args: {
content: content3,
Expand Down

0 comments on commit c66d3b7

Please sign in to comment.