Skip to content

Commit

Permalink
chore(odyssey-storybook): remove unused args decl
Browse files Browse the repository at this point in the history
  • Loading branch information
edburyenegren-okta committed Oct 11, 2022
1 parent fefd391 commit 33058a6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ function EnhancedTable() {
);
}

const DefaultTemplate: Story = (args) => {
const DefaultTemplate: Story = () => {
return (
<TableContainer>
<Table>
Expand Down Expand Up @@ -345,7 +345,7 @@ const DefaultTemplate: Story = (args) => {
export const Default = DefaultTemplate.bind({});
Default.args = {};

const RowHeadingTemplate: Story = (args) => {
const RowHeadingTemplate: Story = () => {
return (
<TableContainer>
<Table>
Expand Down Expand Up @@ -381,7 +381,7 @@ const RowHeadingTemplate: Story = (args) => {
export const RowHeadings = RowHeadingTemplate.bind({});
RowHeadings.args = {};

const RowGroupingTemplate: Story = (args) => {
const RowGroupingTemplate: Story = () => {
return (
<TableContainer>
<Table>
Expand Down Expand Up @@ -440,7 +440,7 @@ const RowGroupingTemplate: Story = (args) => {
export const RowGroupings = RowGroupingTemplate.bind({});
RowGroupings.args = {};

const EnhancedTemplate: Story = (args) => {
const EnhancedTemplate: Story = () => {
return <EnhancedTable />;
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ Disabled.args = {
title: "You don't have access to these logs",
};

const PlacementTemplate: Story = (args) => {
const PlacementTemplate: Story = () => {
return (
<>
<Tooltip title="Top" placement="top">
Expand Down

0 comments on commit 33058a6

Please sign in to comment.