Skip to content

Commit

Permalink
fix(AppShell): formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
edda committed Aug 12, 2024
1 parent 316b37e commit e1c0e0a
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions packages/ui-components/src/components/AppShell/AppShell.stories.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,11 @@ export default {
},
}

const Template = ({ children, ...args }) => <AppShell {...args}><Container py={true}>{children}</Container></AppShell>
const Template = ({ children, ...args }) => (
<AppShell {...args}>
<Container py={true}>{children}</Container>
</AppShell>
)
Template.propTypes = {
children: PropTypes.node,
}
Expand All @@ -60,7 +64,8 @@ export const Embedded = Template.bind({})
Embedded.parameters = {
docs: {
description: {
story: "Responsive shell for your application in embedded mode (typical use case for MFEs, i.e. if your app is to be embedded somewhere).",
story:
"Responsive shell for your application in embedded mode (typical use case for MFEs, i.e. if your app is to be embedded somewhere).",
},
},
}
Expand All @@ -73,7 +78,8 @@ export const EmbeddedWithTopNav = Template.bind({})
EmbeddedWithTopNav.parameters = {
docs: {
description: {
story: "Responsive shell for your application in embedded mode (typical use case for MFEs, i.e. if your app is to be embedded somewhere). TopNavigation can be used in embedded mode.",
story:
"Responsive shell for your application in embedded mode (typical use case for MFEs, i.e. if your app is to be embedded somewhere). TopNavigation can be used in embedded mode.",
},
},
}
Expand All @@ -92,7 +98,8 @@ export const EmbeddedWithSideNav = Template.bind({})
EmbeddedWithSideNav.parameters = {
docs: {
description: {
story: "Responsive shell for your application in embedded mode (typical use case for MFEs, i.e. if your app is to be embedded somewhere). SideNavigation can be used in embedded mode.",
story:
"Responsive shell for your application in embedded mode (typical use case for MFEs, i.e. if your app is to be embedded somewhere). SideNavigation can be used in embedded mode.",
},
},
}
Expand Down

0 comments on commit e1c0e0a

Please sign in to comment.