rebase upstream

This commit is contained in:
Adan Ulloa 2020-01-21 12:03:37 -06:00
commit da470313c4
11 changed files with 2087 additions and 574 deletions

View file

@ -32,3 +32,23 @@ export const WithActions = () => ({
platformName: text('Platform name', 'Platform Name')
}
});
export const WithActionsAndNav = () => ({
Component,
props: {
story: 'with-actions-nav',
href: text('The link href (href)', '#'),
company: text('Company name', 'IBM'),
platformName: text('Platform name', 'Platform Name')
}
});
export const WithActionsAndSidenav = () => ({
Component,
props: {
story: 'with-actions-sidenav',
href: text('The link href (href)', '#'),
company: text('Company name', 'IBM'),
platformName: text('Platform name', 'Platform Name')
}
});