Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
oharsta committed Aug 12, 2024
1 parent ebd696b commit e1c0c8d
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/components/Table/Table.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import React from 'react';
import {Meta, StoryFn} from '@storybook/react';
import {ReactComponent as ArrowDownIcon} from "../../icons/functional-icons/arrow-down-2.svg";
import Table, {defaultTableProps} from './Table';
import Button from "../Button/Button";

Expand Down Expand Up @@ -30,10 +29,10 @@ Default.args = {
defaultSort: "name",
newLabel: "New Person",
searchPlaceHolder: "Search...",
entities:[
{name:"John Doe", birthday: new Date("1978-04-09")},
{name:"Mary Doe", birthday: new Date("1977-04-09")},
{name:"Paul Doe", birthday: new Date("1979-04-09")}
entities: [
{name: "John Doe", birthday: new Date("1978-04-09")},
{name: "Mary Doe", birthday: new Date("1977-04-09")},
{name: "Paul Doe", birthday: new Date("1979-04-09")}
],
};

0 comments on commit e1c0c8d

Please sign in to comment.