Skip to content

Commit

Permalink
refactor(Callout): wrap story with semantic ui container
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexis Sourtzis committed May 5, 2022
1 parent b419334 commit ead362d
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/ui/Callout/Callout.stories.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React from 'react';
import { Container } from 'semantic-ui-react';
import Callout from './Callout';

const CITATION =
Expand All @@ -17,9 +18,11 @@ export default {
};

export const Default = (args) => (
<Callout>
<Callout.Content>{args.content}</Callout.Content>
</Callout>
<Container>
<Callout>
<Callout.Content>{args.content}</Callout.Content>
</Callout>
</Container>
);

Default.args = {
Expand Down

0 comments on commit ead362d

Please sign in to comment.